Docs
Launch Apollo Studio

Federation 2 quickstart

Part 2 - Composition in Apollo Studio


Now that our project and tools are set up, we can start composing our supergraph schema with Apollo Studio.

Managed federation concepts

By composing our supergraph schema with Studio, we use a feature called managed federation. With managed federation, each of our subgraphs registers its schema with Apollo. Whenever a subgraph schema changes, Apollo composes a new supergraph schema.

Registers schema
Registers schema
Composes supergraph schema
Locations subgraph
Reviews subgraph
Apollo Schema Registry

Whenever composition succeeds, Apollo pushes an updated supergraph schema to Apollo Uplink, a special endpoint that gateways use to fetch their configuration:

Updates config
Apollo Schema Registry
Apollo Uplink

Meanwhile, our gateway regularly polls Uplink for changes to its supergraph schema:

Polls for changes
Downloads changes
Gateway
Apollo Uplink

Whenever an update is available, the gateway downloads it and automatically begins using the new supergraph schema, without requiring a restart.

We strongly recommended managed federation for reducing downtime in your production supergraph. Let's set it up!

1. Register your subgraph schemas

Let's return to our gateway project. We can now use Rover's subgraph publish command to register our subgraph schemas with Apollo.

Run the following from your project directory, substituting your Studio graph's graph ref where indicated:

rover subgraph publish YOUR_GRAPH_REF \
--routing-url https://flyby-locations-sub.herokuapp.com/ \
--schema ./locations.graphql \
--name locations

If the command is successful, you'll see output like the following:

A new subgraph called 'locations' for the 'docs-example-graph@current' graph was created
The gateway for the 'docs-example-graph' graph was updated with a new schema, composed from the updated 'locations' subgraph

Nice! If you open your graph's details in Studio now, you'll see types and fields from our locations subgraph listed in the Schema tab:

Locations subgraph schema in Studio

Now, let's do the same thing for our reviews subgraph, again substituting your graph ref where indicated:

rover subgraph publish YOUR_GRAPH_REF \
--routing-url https://flyby-reviews-sub.herokuapp.com/ \
--schema ./reviews.graphql \
--name reviews

If you refresh the Schema tab in Studio, you'll now see types and fields from our reviews service as well.

Now that we've published our subgraph schemas, Apollo Studio automatically composes them into a supergraph schema! However, our gateway doesn't know how to fetch that schema from Apollo. We'll tackle that next.

2. Authenticate the gateway with Apollo Studio

It's time to enable our gateway to fetch its supergraph schema from Apollo. To do that, we'll need a graph API key that we set as the value of an environment variable.

⚠️ API keys are secret credentials. Never share them outside your organization or commit them to version control. Delete and replace API keys that you believe are compromised.

  1. Obtain a graph API key for your Studio graph by following these steps. Make sure to copy its value (for security, API keys are not visible in Studio after creation).

    If you have an Enterprise plan, set the API key's role to Contributor.

  2. Create a new file named .env in your Node.js project folder.

    • Do not add the .env file to version control. If you're working in a Git repository, add .env to your .gitignore file.
  3. Paste the following into .env:

    APOLLO_KEY=your-api-key
    APOLLO_GRAPH_REF=your-graph-id@your-variant
    • Replace your-api-key with your graph API key.
    • Replace your-graph-id@your-variant with your graph's graph ref. (For details on graph refs, see Step 1.)
  4. Add the dotenv Node.js library to your project:

    npm install dotenv

    This library takes care of reading environment variable values from your .env file.

  5. Add the following line to the very top of index.js:

    require('dotenv').config()
  6. Start up your gateway with node index.js. This time there's no error, and you'll see output similar to the following:

    Apollo usage reporting starting! See your graph at https://studio.apollographql.com/graph/docs-example-graph@current/
    🚀 Gateway ready at http://localhost:4000/

By providing an API key to your gateway, you also automatically enable federated trace reporting to Apollo Studio, enabling you to view helpful performance metrics. Learn more about federated traces.

We can quickly open our browser to studio.apollographql.com/sandbox to explore our composed schema in Apollo Sandbox:

Schema view in Apollo Sandbox

While we're here, you can even execute some test queries against the supergraph.

Moving forward

Nice work! We've registered two subgraph schemas with Apollo, and we have a federated gateway that then fetches the composed supergraph schema.

If we now register changes to one of our subgraph schemas, our running gateway automatically fetches the corresponding changes to the supergraph schema (assuming composition succeeds).

Next, let's look at how to use the Rover CLI to compose a supergraph schema locally or in a CI environment. Go to part 3.

Edit on GitHub
Previous
1️⃣ Project setup
Next
3️⃣ Local composition