Marketplace firebase-data-connect
Build and deploy Firebase Data Connect backends with PostgreSQL. Use for schema design, GraphQL queries/mutations, authorization, and SDK generation for web, Android, iOS, and Flutter apps.
git clone https://github.com/aiskillstore/marketplace
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/firebase/firebase-data-connect" ~/.claude/skills/aiskillstore-marketplace-firebase-data-connect && rm -rf "$T"
skills/firebase/firebase-data-connect/SKILL.mdFirebase 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.
Project Structure
dataconnect/ ├── dataconnect.yaml # Service configuration ├── schema/ │ └── schema.gql # Data model (types with @table) └── connector/ ├── connector.yaml # Connector config + SDK generation ├── queries.gql # Queries └── mutations.gql # Mutations
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
)
schema/schema.gqlDefine your GraphQL types, tables, and relationships.
Read reference/schema.md for:
,@table,@col@default- Relationships (
, one-to-many, many-to-many)@ref- Data types (UUID, Vector, JSON, etc.)
2. Define Operations (connector/queries.gql
, connector/mutations.gql
)
connector/queries.gqlconnector/mutations.gqlWrite the queries and mutations your client will use. Data Connect generates the underlying SQL.
Read reference/operations.md for:
- Queries: Filtering (
), Ordering (where), Pagination (orderBy/limit).offset- Mutations: Create (
), Update (_insert), Delete (_update)._delete- Upserts: Use
to "insert or update" records (CRITICAL for user profiles)._upsert- Transactions: use
for multi-step atomic operations.@transaction
3. Secure Your App (connector/
files)
connector/Add authorization logic closely with your operations.
Read reference/security.md for:
for PUBLIC, USER, or NO_ACCESS.@auth(level: ...) and@checkfor row-level security and validation.@redact
4. Generate & Use SDKs
Generate type-safe code for your client platform.
Read reference/sdks.md for:
- Android (Kotlin), iOS (Swift), Web (TypeScript), Flutter (Dart).
- How to initialize and call your queries/mutations.
- Nested Data: See how to access related fields (e.g.,
).movie.reviews
Feature Capability Map
If you need to implement a specific feature, consult the mapped reference file:
| Feature | Reference File | Key Concepts |
|---|---|---|
| Data Modeling | reference/schema.md | , , , Relations |
| Vector Search | reference/advanced.md | , |
| Full-Text Search | reference/advanced.md | |
| Upserting Data | reference/operations.md | mutations |
| Complex Filters | reference/operations.md | , , , , |
| Transactions | reference/operations.md | , binding |
| Environment Config | reference/config.md | , |
Deployment & CLI
Read reference/config.md for deep dive on configuration.
Common commands (run from project root):
# Initialize Data Connect npx -y firebase-tools@latest init dataconnect # Start local emulator npx -y firebase-tools@latest emulators:start --only dataconnect # Generate SDK code npx -y firebase-tools@latest dataconnect:sdk:generate # Deploy to production npx -y firebase-tools@latest deploy --only dataconnect
Examples
For complete, working code examples of schemas and operations, see examples.md.