Created
December 9, 2016 07:30
-
-
Save lu911/7013e0cda88895d3704327cd77b9a3a9 to your computer and use it in GitHub Desktop.
Mutation Execute
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fragment userAllFields on User { | |
id | |
name | |
age | |
gender | |
} | |
mutation { | |
createUser(name: "test", age: 11, gender: FEMALE) { | |
ok | |
user { | |
...userAllFields | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment