We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
You need to be authenticated to mutate anything. Changing this later to be configurable.
Authorization: Bearer {{access_token}} x-authScheme: self
mutation q($input: DogInputType!){ mutateDog(dog: $input){ name } }
{ "input":{ "name":"Ralph" } }
{ "data": { "mutateDog": { "name": "Ralph" } } }
query{ dogName dogName2 }
{ "data": { "dogName": "Ralph", "dogName2": "Heidi" } }