Skip to content

Instantly share code, notes, and snippets.

@ShopifyEng
Created August 5, 2021 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShopifyEng/eceba8a62ca8673fbf24a56684640f84 to your computer and use it in GitHub Desktop.
Save ShopifyEng/eceba8a62ca8673fbf24a56684640f84 to your computer and use it in GitHub Desktop.
Understanding GraphQL for Beginners–Part Three
mutation {
nutritionUpdate(input: {
id: 4,
sugars: "30 g"
}) {
id
sugars
}
}
{
"data": {
"nutritionUpdate": {
"id": "4",
"sugars": "30 g"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment