Creative & DesignBeginner
firebase-data-connect-basics
Build Firebase Data Connect backends backed by Cloud SQL
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/firebase/agent-skills --skill firebase-data-connect-basicsnpx skills add https://github.com/firebase/agent-skills --skill firebase-data-connect-basicsOr paste this URL into your assistant to install:
Overview
What This Skill Does
Build Firebase Data Connect backends backed by Cloud SQL
Application
When to use this Skill
- Integrating firebase data connect basics into your development workflow.
- Following best practices for build firebase data connect backends backed by cloud sql.
- Automating repetitive tasks with AI-assisted tooling.
- Building production-grade applications with proper standards.
- Debugging and troubleshooting common implementation issues.
Documentation
Show Skills.md file
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
├── 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:
- Review GraphQL Schema: Both user-defined and generated extensions (in
.dataconnect/schema/main/). - Validate Operations: Run
npx -y firebase-tools@latest dataconnect:compileagainst the schema.
Lines 1 - 25 of 149
Recommendations