...

/

Solution Review: Pizza Schema

Solution Review: Pizza Schema

Review the solution for the previous challenge.

We'll cover the following...

Problem Statement

  • Write a GraphQL schema to update a pizza.
  • The mutation name is updatePizza.
Press + to interact
type Mutation {
updatePizza()
}
  • The updatePizza must
...