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 }
}
Installs
2
First Seen
Jan 30, 2026
firebase-data-connect — mtr002/firebase-dataconnect-skills