6. Local development with rover dev
10m

Overview

Ready to connect listings and reviews? First, let's make sure we're set up for local development.

In this lesson, we will:

  • Review the development kit provides
  • Use rover dev to do local development with our

From development to production

Even though our and both are running locally, we're emulating the same exchange that would occur when we host everything in a live, traffic-ready environment.

As with developing any application, we need a workflow that allows us to make changes locally, test them out, and feel confident that we've taken care of any problems before pushing our changes to production. (Or at least, our version of production, in tutorial-land!)

But short of rolling new changes directly into our running, production , how do we actually test that our API will keep functioning?

The GraphOS supergraph development kit

provides a supergraph development kit that helps developers build and play with within a architecture quickly and easily.

Andโ€”as you might have guessedโ€”we've already been using parts of the development kit!

Sandbox is one such tool, a special mode of that provides us with Explorer (the IDE we've been using to build and run queries against our locally-running ), a schema reference, , and diffs.

studio.apollographql.com/sandbox/explorer

The Sandbox Explorer

The second tool in our kit is rover templateโ€”it's a collection of templates that can be used to quickly bootstrap a new project using a language or framework of your choice. In fact, it's what we used to set up the reviews !

Rover template options shown as Java plus GraphQL, .NET plus GraphQL, and Go plus GraphQL

Note: Curious about other templates for different languages bootstrapping a new ? Check out rover template in the Apollo documentation.

The last piece of our development kit is rover dev.

rover dev for local development

So far, we've seen data from both come together by running a local . Let's envision now that our routerโ€”and both subgraphsโ€”are running somewhere live within our cloud infrastructure.

The time has come to make some changes. We want to make some local tweaks in our , and have real-time validation as we code that our can still compose when those changes are merged.

A special command in the takes care of this scenario exactly. Let's see how rover dev fits into our development workflow.

Using rover dev

rover dev lets us start a local โ€”right on your computer!โ€”that can across one or more . Each subgraph can be run locally or remotely. It's a in our local development environment! This lets us implement and test changes before we publish them to .

The rover dev command, showing a router receiving a request and splitting it between two subgraphs

Now you might be thinking: didn't we already run a locally? In Lesson 4: Running the router, we downloaded a and ran it locally.

The key difference? That was connected to our registry on , whereas the router we're about to run with rover dev will connect to our local changesโ€”even when those changes haven't been published to the registry! This lets us play around with new features and schema updates; we can enjoy the safety of our development environment, while simulating how our changes will work when composed with the and other subgraphs.

To get started, we'll need both the listings and reviews running. If you haven't already, start them locally by running the following command in each directory.

npm run dev
Task!
Task!

The config file

The easiest way to start a rover dev session with multiple is to use a YAML file listing the details for each subgraph.

Create a new file within the router directory called supergraph-config.yaml and paste the contents below:

supergraph-config.yaml
federation_version: =2.7.0
subgraphs:
listings:
routing_url: http://localhost:4000
schema:
file: ./listings/src/schema.graphql
reviews:
routing_url: http://localhost:4001
schema:
file: ./reviews/src/schema.graphql

The first line defines the version of Federation we're using.

Under subgraphs, we list the name of each in our . Both listings and reviews are running locally, and because we'll run this command from the root of our odyssey-federation-typescript directory, we've specified the relative path to each 's schema.graphql file. We've also provided the routing URL where each is running.

We're ready to start up rover dev!

Running rover dev

Open up a new terminal in the root of the odyssey-federation-typescript project directory. Let's run rover dev and pass in the path to the config file with the --supergraph-config flag.

odyssey-federation-typescript
rover dev --supergraph-config ./router/supergraph-config.yaml --supergraph-port 4002

Note: Because the supergraph-config.yaml file is located in our router directory, we'll pass the path from the root of our project repository.

After running it, we'll get the following output:

โš ๏ธ Do not run this command in production! โš ๏ธ It is intended for local development.
๐Ÿ›ซ starting a session with the 'reviews' subgraph
๐Ÿ›ซ starting a session with the 'listings' subgraph
๐ŸŽถ composing supergraph with Federation v2.8.1
๐Ÿš€ your supergraph is running! head to http://localhost:4002 to query your supergraph
๐Ÿ‘€ watching ./reviews/src/main/resources/schema/schema.graphql for changes
๐ŸŽถ composing supergraph with Federation v2.8.1
โœ… successfully composed after adding the 'listings' subgraph
๐Ÿ‘€ watching ./listings/src/main/resources/schema/schema.graphql for changes

Awesome, looks like our is running at http://localhost:4002. Let's check it out!

Note: By default, rover dev runs the on port 4000, which is why we've used the --supergraph-port flag to specify a different port: 4000 is already taken by our listings !

In the browser, navigate to http://localhost:4002. We'll see Sandbox connected to port 4002, ready for us to the local spawned from rover dev.

In the Documentation panel, we can see familiar-looking from our listings . Test out this for all reviews and a particular listing.

query GetAllReviewsAndListing($listingId: ID!) {
allReviews {
id
text
rating
}
listing(id: $listingId) {
title
}
}

And in the Variables panel:

{
"listingId": "listing-1"
}

Run the query and... data! ๐ŸŽ‰ You can confirm the same data was returned in Studio as it is in Sandbox.

We're now free to make any changes we'd like to in listings or reviews, and see for ourselves how the would handle them. We can even spin up a whole new subgraph and add it to our local .

This is your playground to explore in, to test new concepts, and dream up new featuresโ€”all without impacting the production !

Practice

Which of the following does rover dev not do?

Key takeaways

  • The development kit includes the following: Sandbox, rover template and rover dev.
  • rover dev lets us start a local that can across one or more .
  • To use rover dev, we need each 's name, the URL where it's running, and (optionally) the path to the schema file. The easiest way to do this is with a config file.

Up next

We have everything we need to get started on our changes! Let's turn our focus back to that dream that connects data between a listing and its reviews. For this, we'll need to dive an essential piece in the process of coordinating data across : entities.

Previous

Share your questions and comments about this lesson

This course is currently in

beta
. Your feedback helps us improve! If you're stuck or confused, let us know and we'll help you out. All comments are public and must follow the Apollo Code of Conduct. Note that comments that have been resolved or addressed may be removed.

You'll need a GitHub account to post below. Don't have one? Post in our Odyssey forum instead.