skills.vishalvoidskills/vishalvoid
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-basics

Overview

What This Skill Does

Build Firebase Data Connect backends backed by Cloud SQL

Application

When to use this Skill

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:

  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.
Lines 1 - 25 of 149

Recommendations

Explore other random skills

All skillsMy patterns