firebase-data-connect
Installation
SKILL.md
Firebase Data Connect
Firebase Data Connect is a relational database service using Cloud SQL for PostgreSQL with GraphQL schema, auto-generated queries/mutations, and type-safe SDKs.
Quick Start
# schema.gql - Define your data model
type Movie @table {
id: UUID! @default(expr: "uuidV4()")
title: String!
releaseYear: Int
genre: String
}
# queries.gql - Define operations
query ListMovies @auth(level: PUBLIC) {
movies { id title genre }
}