7. Field insights
5m

Overview

The end is in sight! Let's finish up that deprecation we started.

In this lesson, we will:

  • Inspect insights in
  • Learn about two types of metrics: field executions and referencing s
  • Mark changes as safe for an check
  • See the CI/CD workflows in action

Inspecting usage for our deprecated field

Let's hop over to Studio and navigate to the Insights page, then select the Fields tab.

By default, each shows the Total requests metric, also known as requesting operations, which is the number of in a given period that have included that particular . You can change this time range using the filters on the page.

This metric helps us see how frequently this particular is being used, which is exactly what we need to monitor usage for our deprecated field. We want that metric to go all the way down.

https://studio.apollographql.com

The Fields page overview in Studio

Note: There's another type of metric called field executions. To see this metric, you'll need a higher volume of requests being sent to your . You can learn more about the difference between executions and requesting in the Apollo documentation.

Now, depending on how much time has passed between the last time you sent a to the , you might not see any metrics on this page! We're still in tutorial-land, so there isn't much real production traffic going to our .

Let's go ahead and get some numbers in here so we can walk through what it might look like if we did have more traffic!

The Code Sandbox below contains a script that takes a URL and sends requests to it over a period of time. We'll use it to send fake traffic to our supergraph.

Go ahead and enter your URL (you can find that at the top of your 's README page). Then press the button to trigger the script!

Note: Right now, our Poetic Plates API does not have any protection against malicious queries or denial-of-service (DoS) attacks. In a future course, we'll cover more techniques to secure your . In the meantime, you can check out the Apollo technote about the topic to learn more about rate limiting, setting timeouts, pagination and more.

Inspecting field usage

Alright, back to our page!

  1. At the top, let's search for the text in our schema.

  2. We can see from the metrics on the Fields page that our deprecated text is still being used. (That's from all the painstaking clicking we just did!).

    https://studio.apollographql.com

    Filtering schema fields to find the text field usage

We want to make sure that usage for this goes down to zero. API consumers should already see a deprecated warning when using this field, but we'll also want to announce it in other channels (such as a changelog, in a community group, or a targeted email). We'll want to give them enough time to make changes in their API!

Over time, this specific 's usage metrics should trickle downwards. And if it's not? Well, we've got client awareness set up, so we can see exactly which clients aren't following our recommendations! We can reach out to them and encourage them to fix their queries to avoid any breaking changes once we finally remove the field.

Remove a deprecated field

Let's pretend that enough time has passed and we feel ready to remove the !

  1. Back in the recipes repository, open up the schema.graphql file.

  2. Find the deprecated text in the Ingredient type and remove it.

    schema.graphql
    - "Display text for the ingredient"
    - text: String @deprecated(reason: "Use detailedDescription")
  3. What comes after every schema change? A schema check! Run the rover subgraph check command in your terminal (replacing the parameters below with your own!)

    rover subgraph check <GRAPH_REF> \
    --schema <SCHEMA_FILE_PATH> \
    --name <SUBGRAPH_NAME>

    checks assess whether the proposed changes to the will affect any operations that have been executed against the schema within a certain timeframe. By default, is configured to run checks against operations that have been executed within the last seven days.

    If you didn't take a seven-day break between this section and the previous one, it's likely that your operation check failed! 😱

    Checking the proposed schema for subgraph recipes against poetic-plates-001@main
    Compared 1 schema changes against 7 operations
    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
    β”‚ Change β”‚ Code β”‚ Description β”‚
    β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
    β”‚ FAIL β”‚ FIELD_REMOVED β”‚ type `Ingredient`: field `text` removed β”‚
    β””β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
    View full details at [Studio URL].
    error[E030]: This operation check has encountered 1 schema change that would break operations from existing client traffic.
    The changes in the schema you proposed are incompatible with graph poetic-plates-supergraph@main. See https://www.apollographql.com/docs/studio/schema-checks/ for more information on resolving operation check errors.
  4. Let's investigate the errors by heading over to Studio's Checks page, then clicking on the most recent check.

  5. Based on historical executed against our , we see the warning that removing this might cause a breaking change for clients. In our (pretend) situation, we've made the decision to go ahead with this change! So we can go ahead and override this error.

Operation check: mark changes as safe

  1. Select an in the "Affected operation" list. You may have more than one, depending on the queries you've sent to your that used the text .

  2. Click the Override button.

  3. Click Mark changes as safe. This tells the process that this exact change can be safely ignored in future checks.

  4. With the override in place, we can rerun the check right here in Studio, by clicking Rerun check.

This time, the check will use the new configurations we've set on this operation, and our removal of the text field will no longer raise the alarm. πŸ₯³

Deploying our changes

Let's get these code and schema changes deployed using our shiny workflows we set up earlier!

Creating a pull request for our changes

  1. In a terminal window, create a new branch. (You can name it whatever you'd like, we'll name ours remove-ingredient-text.

    git checkout -b remove-ingredient-text
  2. Add the schema.graphql file we made changes to.

    git add schema.graphql
  3. Commit the changes.

    git commit -m "Remove Ingredient.text field"
  4. Then push them up!

    git push -u origin remove-ingredient-text
  5. We'll jump back to GitHub to create a pull request for this branch to main.

  6. After creating the pull request, our schema check workflow will trigger automatically. We can click the job to see more details and see our workflow in action.

  7. If the job has passed, we're good to go! We can merge our changes to main with confidence.

Railway deployment

Let's follow our automatic deployment on Railway. Hop over to Railway and check to make sure the deployment is successful!

Publishing to GraphOS

Now that our is ready with the changes, we can run our publish schema workflow!

  1. Head back to the GitHub repo and click Actions.

  2. Select the Publish schema workflow from the list of workflows on the left.

  3. Click the Run workflow button, make sure the branch is set to main then click Run workflow to kick off the job.

  4. Click the job to see more details and see our workflow in action.

  5. If the job has passed, that means it successfully ran the publish command, so let's check out the in Studio to confirm that our changes have landed successfully!

Let's send a to the for one last confirmation. Head over to Explorer and run the same query from earlier:

query GetRandomRecipeIngredients {
randomRecipe {
ingredients {
text
detailedDescription
}
}
}

We get an error! for the text isn't valid anymore, since it's not a part of our schema.

We've successfully removed the from our schema!

query GetRandomRecipeIngredients {
randomRecipe {
ingredients {
detailedDescription
}
}
}

If we remove the text field, we get the correct data back smoothly πŸŽ‰

Practice

In which of the following scenarios might you want to override an operation check failure?

Key takeaways

  • Requesting operations lists the number of in a given period that have included the particular .
  • We can override a failed check in Studio.
  • checks consider historical operations against the schema to ensure updates to a do not introduce breaking changes for clients.

Conclusion

You did it! Congratulations on learning how to use GraphOS to safely and confidently launch schema changes with ease 😌

In this course, we covered the specific situation of deprecating a in our schema. We learned how to use to identify potential failures before our updates could cause issues in production. We used locally and in our CI/CD pipeline to integrate schema checks and publish our . We also learned how to inspect the results of a schema check and in Studio, and how to mark changes as safe for an check. The schema registry helped us keep track of every single subgraph schema change.

With these tools and knowledge under our belt, we can work on bigger features for Poetic Plates. Why not spice things up by adding another ? In the next course, GraphOS: Growing your API, we'll tackle that and more!

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.