Question from the GraphQL test

What are variables in GraphQL?

Easy

Considérez la mutation suivante :

mutation UpdateUser($id: ID!, $newEmail: String!) {
  updateUser(id: $id, email: $newEmail) {
    id
    email
  }
}

Quel est le rôle de $id et $newEmail dans cette mutation ?

Author: AnasStatus: PublishedQuestion passed 7 times
Edit
-1
Community Evaluations
developer avatar
Other
Benjamin Lepoutre
07/10/2024
elle est en doublon avec une autre question