Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RenatoSiqueira/b438a6c1cc8f66d1b0af14f6d7521e1c to your computer and use it in GitHub Desktop.
Save RenatoSiqueira/b438a6c1cc8f66d1b0af14f6d7521e1c to your computer and use it in GitHub Desktop.
Mutation Test
mutation ($accountId: String!, $CourseInput: UpdateCourseInput!) {
updateCourse(accountId: $accountId, input: $CourseInput) {
id,
title,
description,
defaultVersion,
labels{
id,
}
__typename
}
}
{
"accountId": "3566f823-5993-47f3-88a1-38669ea07944",
"CourseInput": {
"courseId": "3e339631-5f53-4597-a296-d4bcc1eb9104",
"labels": [
{
"id": "61d22879-6436-47f1-beb2-03d80b938b49"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment