Skip to content

Instantly share code, notes, and snippets.

@tothandras
Created November 10, 2015 10:17
Show Gist options
  • Save tothandras/a89f222baf0b530edd0b to your computer and use it in GitHub Desktop.
Save tothandras/a89f222baf0b530edd0b to your computer and use it in GitHub Desktop.
AddUser
mutation AddUser {
addUser(input: {clientMutationId: "1", name: "New Usr"}) {
changedUserEdge {
node {
id
name
createdAt
}
}
}
}
{
"data": {
"addUser": {
"changedUserEdge": {
"node": {
"id": "VXNlcjo1NjQwYTJiNTU1MzBmOGFhNTBlM2NkNGQ=",
"name": "New Usr",
"createdAt": "2015-11-09T13:13:51.523Z"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment