Created
October 7, 2020 14:28
-
-
Save zorca/1ffa9a7a084a68f541425f58d6471b87 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
mutation LoginUser ($clientMutationId:String!,$username:String!, $password:String!) { | |
login( input: { | |
clientMutationId: $clientMutationId, | |
username: $username, | |
password: $password | |
} ) { | |
authToken | |
user { | |
id | |
name | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment