Docs
Launch GraphOS Studio

2. Add the GraphQL schema


This tutorial uses a modified version of the you build as part of the Apollo full-stack tutorial. You can visit that server's Apollo Studio Sandbox Explorer to explore its schema without needing to be logged in:

The Sandbox query explorer

You'll know that this Sandbox instance is pointed at our server because its URL, https://apollo-fullstack-tutorial.herokuapp.com, is in the box at the top left of the page. If Sandbox is properly connected, you'll see a green dot:

A closeup of the URL box with a dot indicating it's connected

The schema defines which your server can execute. At the top left, click the schema icon to get an overview of your schema:

The schema icon to click

In the Reference tab, you can now see a list of all of the things available to you as a consumer of this API, along with available on all objects:

Apollo sandbox showing the schema reference

Download your server's schema

requires a schema to generate type-safe models and code from your queries. There are multiple ways to get a schema. For example, you can go to the tab and download the raw SDL schema using Apollo Studio Sandbox.

In this tutorial, we will use the downloadApolloSchema Gradle task that is created by our plugin automatically. Since supports introspection, this will work with any endpoint that has enabled.

From the root of the project, run the following in Android Studio's Terminal tab:

(shell)
./gradlew :app:downloadApolloSchema --endpoint='https://apollo-fullstack-tutorial.herokuapp.com/graphql' --schema=app/src/main/graphql/schema.graphqls

Note that the path given to --schema is relative to the root of the project.

This will download a schema.graphqls file from your endpoint to app/src/main/graphql/schema.graphqls.

You should still have the yellow banner, A project sync may be necessary for the IDE to work properly. from the previous step. Now is time to Click Sync Now.

If everything goes well, is now added to your project. Next, write your first query that uses this schema.

Previous
1. Configure your project
Next
3. Write your first query
Edit on GitHubEditForumsDiscord

© 2024 Apollo Graph Inc.

Privacy Policy

Company