PluginBench
Skill
Official
Fail
Audit score 45

firebase-data-connect

firebase/agent-skills

Build and deploy PostgreSQL-backed Firebase backends with GraphQL, auto-generated queries, and type-safe SDKs.

What is firebase-data-connect?

Firebase SQL Connect (formerly Data Connect) is a relational database service that combines Cloud SQL PostgreSQL with GraphQL schema, auto-generated CRUD operations, and type-safe SDKs for web, mobile, and backend platforms. Use it when you need a relational database with Firebase, designing schemas with tables and relationships, writing authorized queries and mutations, or configuring real-time data updates.

  • Design relational data models with GraphQL types, tables, and relationships (@table, @ref directives)
  • Auto-generate type-safe queries, mutations, and subscriptions from schema definitions
  • Implement row-level security with @auth, @check, and @redact directives for authorization
  • Configure real-time subscriptions with @refresh directive for time-based polling and event-driven updates
  • Generate platform-specific SDKs (TypeScript, Kotlin, Swift, Dart, Node.js Admin) from connector configuration
  • Support advanced PostgreSQL features including vector search, full-text search, transactions, and native SQL operations

How to install firebase-data-connect

npx skills add https://github.com/firebase/agent-skills --skill firebase-data-connect
Prerequisites
  • Firebase project with billing enabled
  • Cloud SQL PostgreSQL instance or Firebase SQL Connect provisioned
  • Firebase CLI installed (npx firebase-tools)
  • Basic understanding of GraphQL schema syntax
Claude Code
Cursor
Windsurf
Cline

How to use firebase-data-connect

  1. 1.Install the skill: npx skills add https://github.com/firebase/agent-skills --skill firebase-data-connect
  2. 2.Define your data model in schema/schema.gql using @table and relationship directives
  3. 3.Write authorized queries in connector/queries.gql and mutations in connector/mutations.gql with @auth rules
  4. 4.Validate the project: npx -y firebase-tools@latest dataconnect:compile
  5. 5.Configure SDK generation in connector.yaml for your target platforms (web, mobile, admin)
  6. 6.Generate SDKs: npx -y firebase-tools@latest dataconnect:sdk:generate
  7. 7.Integrate generated SDKs into your client applications and use type-safe methods to query/mutate data

Use cases

Good for
  • Building a movie database with user ratings, reviews, and real-time updates across web and mobile clients
  • Creating a user profile system with upsert operations and row-level security to isolate user data
  • Implementing vector search for semantic similarity queries on embeddings
  • Designing multi-step atomic transactions for complex operations like order processing with inventory updates
  • Integrating with Cloud Functions to trigger backend logic when data mutations occur
Who it's for
  • Full-stack developers building Firebase applications with relational data requirements
  • Backend engineers designing secure GraphQL APIs with PostgreSQL
  • Mobile developers (iOS/Android/Flutter) needing type-safe database access
  • Teams requiring real-time data synchronization across multiple platforms
  • Developers familiar with GraphQL who want schema-driven database development

firebase-data-connect FAQ

Should I use Native GraphQL or Native SQL?

Default to Native GraphQL for almost all use cases (CRUD, filtering, sorting, joins) because it provides type safety and schema enforcement. Only use Native SQL when you explicitly need advanced PostgreSQL features like PostGIS extensions, window functions, or complex aggregations.

How do I implement real-time updates?

Use the @refresh directive on queries to enable real-time subscriptions. You can configure time-based polling intervals or event-driven updates using CEL conditions to scope refresh triggers precisely. See reference/realtime.md for details.

How do I secure my queries and mutations?

Use @auth(level: PUBLIC|USER|NO_ACCESS) on operations, @check for validation rules, and @redact for row-level security. SQL Connect is secure by default and enforces authorization at the operation level.

Can I use this with multiple platforms (web, iOS, Android)?

Yes. Configure SDK generation in connector.yaml for each platform (javascriptSdk, kotlinSdk, swiftSdk, etc.), then run dataconnect:sdk:generate to create type-safe SDKs for each platform.

What's the difference between Firebase Data Connect and Firebase SQL Connect?

Firebase Data Connect was renamed to Firebase SQL Connect. All instructions and examples referring to either name apply to the same product—a relational database service using Cloud SQL PostgreSQL with GraphQL.

Full instructions (SKILL.md)

Source of truth, from firebase/agent-skills.


name: firebase-data-connect description: Builds and deploys Firebase SQL Connect (aka Firebase Data Connect) backends with PostgreSQL securely. Use when designing schemas with tables and relations, writing authorized queries and mutations, configuring real-time data updates, or generating type-safe SDKs. Use when you need a relational database with Firebase, or when the user mentions SQL Connect or Data Connect.

Firebase SQL Connect

Firebase SQL Connect is a relational database service using Cloud SQL for PostgreSQL with GraphQL schema, auto-generated queries/mutations, and type-safe SDKs.

[!NOTE] Product Rename: Firebase Data Connect was renamed to Firebase SQL Connect. All instructions, references, and examples in this skill repository referring to "Data Connect" or "Firebase Data Connect" apply to "SQL Connect" and "Firebase SQL Connect" as well.

Project Structure

dataconnect/
├── dataconnect.yaml      # Service configuration
├── seed_data.gql         # LOCAL ONLY — prototype/test data
├── schema/
│   └── schema.gql        # Data model (types with @table)
└── connector/
    ├── connector.yaml    # Connector config + SDK generation
    ├── queries.gql       # Queries
    └── mutations.gql     # Mutations

Key Tools for Validation

Rely on these two mechanisms to ensure project correctness:

  1. Review GraphQL Schema: Both user-defined and generated extensions (in .dataconnect/schema/main/).
  2. Validate Operations: Run npx -y firebase-tools@latest dataconnect:compile against the schema.

Operation Strategies: GraphQL vs. Native SQL

Always default to Native GraphQL. Native SQL lacks type safety and bypasses schema-enforced structures. Only use Native SQL when the user explicitly requests it or when the task requires advanced database features.

StrategyWhen to useImplementation
Native GraphQL (Default)Almost all use cases. Standard CRUD, basic filtering/sorting, simple relational joins. Requires full type safety.Auto-generated fields (movie_insert, movies). Strong typing and schema enforcement.
Native SQL (Advanced)PostgreSQL extensions (e.g., PostGIS), window functions (RANK()), complex aggregations, or highly tuned sub-queries.Raw SQL string literals via _select, _execute, etc. Requires strict positional parameters ($1). No type safety.

Development Workflow

Follow this strict workflow to build your application. You must read the linked reference files for each step to understand the syntax and available features.

1. Define Data Model (schema/schema.gql)

Define your GraphQL types, tables, and relationships (which map to a Postgres schema).

Read reference/schema.md for:

  • @table, @col, @default
  • Relationships (@ref, one-to-many, many-to-many)
  • Data types (UUID, Vector, JSON, etc.)

2. Define Authorized Operations (connector/queries.gql, connector/mutations.gql)

Write the queries and mutations your client will use, including authorization logic. SQL Connect is secure by default.

Read reference/operations.md for:

  • Queries: Filtering (where), Ordering (orderBy), Pagination (limit/offset).
  • Mutations: Create (_insert), Update (_update), Delete (_delete).
  • Upserts: Use _upsert to "insert or update" records (CRITICAL for user profiles).
  • Transactions: Use @transaction for multi-step atomic operations. Use _expr: "response.<prevStep>" to pass data between steps.

Read reference/security.md for authorization:

  • @auth(level: ...) for PUBLIC, USER, or NO_ACCESS.
  • @check and @redact for row-level security and validation.

Read reference/realtime.md for real-time subscriptions:

  • @refresh directive for time-based polling and event-driven updates.
  • CEL conditions to scope refresh triggers precisely.

Read reference/native_sql.md for Native SQL operations:

  • Embedding raw SQL with _select, _selectFirst, _execute
  • Strict rules for positional parameters ($1, $2), quoting, and CTEs
  • Advanced PostgreSQL features (PostGIS, Window Functions)

3. Use type-safe SDK in your apps

Generate type-safe code for your client platform.

Configure SDK generation in connector.yaml:

connectorId: my-connector
generate:
  javascriptSdk:
    outputDir: "../web-app/src/lib/dataconnect"
    package: "@movie-app/dataconnect"
  kotlinSdk:
    outputDir: "../android-app/app/src/main/kotlin/com/example/dataconnect"
    package: "com.example.dataconnect"
  swiftSdk:
    outputDir: "../ios-app/DataConnect"

Generate SDKs:

npx -y firebase-tools@latest dataconnect:sdk:generate

For platform-specific instructions on how to use the generated SDKs, read:


Feature Capability Map

If you need to implement a specific feature, consult the mapped reference file:

FeatureReference FileKey Concepts
Data Modelingreference/schema.md@table, @unique, @index, Relations
Vector Searchreference/search.mdVector, @col(dataType: "vector"), embeddings
Full-Text Searchreference/search.md@searchable, movies_search
Upserting Datareference/operations.md_upsert mutations
Complex Filtersreference/operations.md_or, _and, _not, eq, contains
Transactionsreference/operations.md@transaction, response binding
Environment Configreference/config.mddataconnect.yaml, connector.yaml
Realtime Subscriptionsreference/realtime.md@refresh, subscribe(), auto-refresh
Cloud Functions Integrationreference/cloud_functions.mdonMutationExecuted, triggering events
Data Seeding & Migrationsreference/data_seeding.mdseed_data.gql, _insertMany, Admin SDK bulk
Starter Templatestemplates.mdCRUD, user-owned resources, many-to-many, SDK init

Deployment & CLI

Read reference/config.md for deep dive on configuration.

Follow these patterns based on your current task:

How to initialize SQL Connect in a Firebase project

  1. Understand the app idea. Ask clarification questions if unclear.
  2. Run npx -y firebase-tools@latest init dataconnect.
  3. Validate that the app template and generated SDK are setup.

How to build apps using SQL Connect locally

  1. Start the emulator: npx -y firebase-tools@latest emulators:start --only dataconnect.
  2. Write schema and operations.
  3. Seed local test data into seed_data.gql. Read reference/data_seeding.md.
  4. Run npx -y firebase-tools@latest dataconnect:compile or npx -y firebase-tools@latest dataconnect:sdk:generate to validate them.
  5. Use the operations in your app and build it.

How to deploy SQL Connect to Cloud SQL

  1. Run npx -y firebase-tools@latest deploy --only dataconnect.

Examples

For complete, working code examples of schemas and operations, see examples.md.

For ready-to-use starter templates (CRUD, user-owned resources, many-to-many, YAML configs, SDK init), see templates.md.