1m
Bonus Exercise: Launching your changes
Goal: Land your local supergraph changes to production. You should be able to run the query below with your supergraph on Studio.
query GetRecipeAndCookwareInformation {recipe(id: "rec3j49yFpY2uRNM1") {namedescriptioningredients {text}instructionscookware {namedescriptioncleaningInstructions}}}
Need help? Refer back to the lesson on Making changes to the supergraph.
Extra challenge: CI/CD
Instead of running Rover commands manually on your terminal, consider using a CI/CD pipeline with GitHub Actions. The workflow files are already included in your recipes
repo.Check out Lesson 6 of GraphOS: Safe API delivery for more detailed steps and instructions.