What problem does it solve? Setting up a relational database backend with Firebase requires coordinating PostgreSQL schemas, GraphQL operations, authorization rules, and client SDK generation across multiple platforms, which is error-prone without structured guidance. ## Core Features & Use Cases - Schema and Data Modeling: Define GraphQL types with @table, relationships (one-to-many, many-to-many), indexes, and constraints that map to Cloud SQL for PostgreSQL. - Authorized Operations: Write queries and mutations with @auth, @check, and @redact directives for row-level security, plus transactions and upserts. - Realtime and Advanced Features: Configure @refresh subscriptions, vector similarity search, full-text search, and Native SQL for PostGIS or window functions. - Type-Safe SDK Generation: Generate client SDKs for Web, Android, iOS, Flutter, and Node.js Admin with a single CLI command. - Use Case: Build a movie review app by defining the schema, writing authorized queries, running the local emulator, and generating a TypeScript SDK for your web frontend. ## Quick Start Ask the AI to initialize Firebase SQL Connect in your project and create a schema with queries for your app's data model.