In this quickstart, you will create and deploy a small sample database and access it from a React frontend.
Prerequisites
To complete this quickstart, you'll need the following:
- A Node.js environment with NPM.
- A Google Account.
Tutorial
| Tutorial | |
|---|---|
1. Create a new Firebase projectStart by creating a new Firebase project in the Firebase console. Then, upgrade the project to the Blaze plan. |
|
2. Initialize your projectCreate a new directory and initialize a Firebase project in it. When prompted, choose the following options:
|
|
3. Review the example GraphQL definitionsIn Data Connect, you define all of your database schemas and operations using GraphQL. When you initialized your project, the Firebase CLI created some example definitions to get you started. |
dataconnect/schema/schema.gql (excerpt)
type Movie @table { title: String! imageUrl: String! genre: String } type MovieMetadata @table { movie: Movie! @unique rating: Float releaseYear: Int description: String } query ListMovies @auth(level: PUBLIC) { movies { id title imageUrl genre } } |
4. Deploy your schemas and operationsWhenever you make changes to your database schemas, queries, or mutations, you must deploy them for your changes to take effect on the database. |
|
5. Seed the database with sample dataThis seed data will give you something to look at when you test the sample app. Note that in this step you are executing arbitrary GraphQL, which is allowed for administrative tasks. |
|
6. Generate a JavaScript client SDKThis command uses your GraphQL definitions to generate a JavaScript library specifically for your database, complete with type definitions. You use this library in your client app to perform all database operations. You can generate libraries for multiple platforms, including Kotlin for Android,
Swift for iOS, and Flutter, by adding definitions to |
export interface ListMoviesData { movies: ({ id: UUIDString; title: string; imageUrl: string; genre?: string | null; } & Movie_Key)[]; } export function useListMovies( options?: useDataConnectQueryOptions&<ListMoviesData> ): UseDataConnectQueryResult&<ListMoviesData, undefined>; |
7. Set up a web appRun these commands to add a new web app to your Firebase project. |
|
8. Write a sample React clientReplace the contents of Notice that the app completes the necessary database access using a function from the generated SDK. The generated SDK for React uses TanStack Query to handle state management. |
import { initializeApp } from 'firebase/app'; import firebaseConfig from './firebase-config.json'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { useListMovies } from '@dataconnect/generated/react'; import './App.css'; const app = initializeApp(firebaseConfig); const queryClient = new QueryClient(); function App() { return ( <QueryClientProvider client={queryClient}> <Movies /> </QueryClientProvider> ); } function Movies() { const { isLoading, data } = useListMovies(); if (isLoading) { return <h1>...</h1> } return ( <> {data?.movies.map( movie => <h1 key={movie.id}>{movie.title}</h1> )} </> ); } export default App; |
9. Try the web appStart the development server to see the example app in action. |
|
Next steps
Try the Visual Studio Code extension
When developing with Data Connect, we strongly recommend using the Visual Studio Code extension. Even if you don't use Visual Studio Code as your primary development environment, the extension provides several features that make schema and operation development more convenient:
- A GraphQL language server, providing syntax checking and autocomplete suggestions specific to Data Connect
- CodeLens buttons in line with your code that let you read and write data from your schema definition files and execute queries and mutations from your operation definitions.
- Automatically keep your generated SDKs synchronized with your GraphQL definitions.
- Simplified local emulator setup.
- Simplified deployment to production.
Use the Data Connect emulator for local development
Although this tutorial showed you how to deploy Data Connect schemas and operations directly to production, you will likely not want to make changes to your production dstabase while you are actively developing your app. Instead, set up the Data Connect emulator and do your development work against it rather than production. The emulator sets up a local PGlite instance that behaves similarly to a live Postgres instance on CloudSQL.
Learn how to write schemas and operations for your app
When developing apps with Data Connect, the design of your schemas and operations is one of the first and most important development tasks you will complete.
- Gemini in the Firebase console is an AI tool that can generate Data Connect schemas from a natural language description of your app. This tool can get you started very quickly, especially if you've never worked with relational databases before.
- Alternatively, you can write database schemas, queries, and mutations directly using GraphQL. Start with the Design Data Connect schemas page and continue to the follow-up pages to learn how to write operations.