12 chapters · 25 min
Skills
Chapter 7 of 12
Builds and deploys Firebase SQL Connect (aka Firebase Data Connect) backends with PostgreSQL securely.
3 minutes · 612 words · 14 sections
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.
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 # MutationsRely on these two mechanisms to ensure project correctness:
.dataconnect/schema/main/).npx -y firebase-tools@latest dataconnect:compile against the schema.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.
| Strategy | When to use | Implementation |
|---|---|---|
| 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. |
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.
schema/schema.gql)Define your GraphQL types, tables, and relationships (which map to a Postgres schema).
Read reference/schema.md (opens in a new tab) for:
@table,@col,@default- Relationships (
@ref, one-to-many, many-to-many)- Data types (UUID, Vector, JSON, etc.)
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 (opens in a new tab) for:
- Queries: Filtering (
where), Ordering (orderBy), Pagination (limit/offset).- Mutations: Create (
_insert), Update (_update), Delete (_delete).- Upserts: Use
_upsertto “insert or update” records (CRITICAL for user profiles).- Transactions: Use
@transactionfor multi-step atomic operations. Use_expr: "response.<prevStep>"to pass data between steps.Read reference/security.md (opens in a new tab) for authorization:
@auth(level: ...)for PUBLIC, USER, or NO_ACCESS.@checkand@redactfor row-level security and validation.Read reference/realtime.md for real-time subscriptions:
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:generateFor platform-specific instructions on how to use the generated SDKs, read:
If you need to implement a specific feature, consult the mapped reference file:
| Feature | Reference File | Key Concepts |
|---|---|---|
| Data Modeling | reference/schema.md (opens in a new tab) | @table, @unique, @index, Relations |
| Vector Search | reference/search.md (opens in a new tab) | Vector, @col(dataType: "vector"), embeddings |
| Full-Text Search | reference/search.md (opens in a new tab) | @searchable, movies_search |
Read reference/config.md (opens in a new tab) for deep dive on configuration.
Follow these patterns based on your current task:
npx -y firebase-tools@latest init dataconnect.npx -y firebase-tools@latest emulators:start --only dataconnect.seed_data.gql. Read
reference/data_seeding.md (opens in a new tab).npx -y firebase-tools@latest dataconnect:compile or
npx -y firebase-tools@latest dataconnect:sdk:generate to validate them.npx -y firebase-tools@latest deploy --only dataconnect.For complete, working code examples of schemas and operations, see examples.md (opens in a new tab).
For ready-to-use starter templates (CRUD, user-owned resources, many-to-many, YAML configs, SDK init), see templates.md (opens in a new tab).
Install this repository
npx skills add firebase/agent-skills/plugin marketplace add firebase/agent-skillsSkills install per repository, not per chapter — the CLI has no documented per-skill form, so we do not print one.
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.
The verbatim description from this skill’s front matter — the string an agent matches on to decide whether to load it.
main, last pushed 6 August 2026.SKILL.md, not by matching a directory convention. One layout observed: skills/*/SKILL.md.h1 and no skipped levels:.claude-plugin/marketplace.json by Firebase, declaring 1 plugin. It is read for editorial metadata only — never as the skill index, which is always the repository tree.@refresh directive for time-based polling and event-driven updates.Read reference/native_sql.md (opens in a new tab) for Native SQL operations:
_select, _selectFirst, _execute$1, $2), quoting, and CTEs| Upserting Data | reference/operations.md (opens in a new tab) | _upsert mutations |
| Complex Filters | reference/operations.md (opens in a new tab) | _or, _and, _not, eq, contains |
| Transactions | reference/operations.md (opens in a new tab) | @transaction, response binding |
| Environment Config | reference/config.md (opens in a new tab) | dataconnect.yaml, connector.yaml |
| Realtime Subscriptions | reference/realtime.md (opens in a new tab) | @refresh, subscribe(), auto-refresh |
| Cloud Functions Integration | reference/cloud_functions.md (opens in a new tab) | onMutationExecuted, triggering events |
| Data Seeding & Migrations | reference/data_seeding.md (opens in a new tab) | seed_data.gql, _insertMany, Admin SDK bulk |
| Starter Templates | templates.md (opens in a new tab) | CRUD, user-owned resources, many-to-many, SDK init |
/firebase/agent-skills.md, and each chapter at its own .md URL.16 files · 110 KB
Everything this skill ships beside its prose. All of it is set here, as subchapters of chapter 7.
Documentation the agent loads on demand, rather than up front.
Everything else published alongside the skill.