Docs
Launch GraphOS Studio

Federation 2 quickstart

Part 2 - Composition in GraphOS Studio


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

Managed federation concepts

To compose our supergraph schema with Studio, we use a feature called managed federation. With , each of our publishes its schema to Apollo. Whenever a changes, Apollo attempts to compose a new supergraph schema.

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

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

Updates config
Apollo Schema Registry
Apollo Uplink

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

Polls for changes
Downloads changes
Graph router
Apollo Uplink

Whenever an update is available, the router 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 . Let's set it up!

1. Register your subgraph schemas

Let's return to our router project. We can now use 's subgraph publish command to register our 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 from our locations 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, GraphOS Studio automatically composes them into a supergraph schema. However, our router doesn't know how to fetch that schema from Apollo. We'll tackle that next.

2. Authenticate the router with GraphOS Studio

It's time to enable our router 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.

⚠️ CAUTION

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

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

    • Make sure to copy and paste the API key's value somewhere so you can reference it (for security, API keys are not visible in Studio after creation).
  2. Paste the following terminal command into your text editor so you can make changes to it:

    APOLLO_KEY=your-api-key \
    APOLLO_GRAPH_REF=your-graph-id@your-variant \
    ./router

    Then, make the following changes:

    • Replace your-api-key with your graph API key.
    • Replace your-graph-id@your-variant with your graph's graph ref.
      • For a refresher on , see
        Step 1
        .
  3. Paste the edited command into your terminal and run it.

    This time there's no error, and you'll see output similar to the following:

    NOTE

    By providing an API key to the router, you also automatically enable federated trace reporting to GraphOS Studio, enabling you to view helpful performance metrics.

  4. Optionally, to help you keep track of your router's environment variables, consider setting up a tool like

    so you don't need to set the every time you run ./router.

    (Most cloud deployment environments provide a helpful way to set environment variables, so this issue is mostly limited to local development.)

Now that our router is running, we can quickly open our browser to

to explore our composed schema in :

Schema view in Apollo Sandbox

While we're here, try executing some test queries against the supergraph!

Moving forward

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

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

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

Previous
Project setup
Next
Local composition
Edit on GitHubEditForumsDiscord

© 2024 Apollo Graph Inc.

Privacy Policy

Company