Forked from ferdinandsalis/create-client-mutation.gql
Created
September 14, 2020 21:42
-
-
Save gugl/c573ab07cd96c2cd40bd88788170c41d 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 createClient(client: ClientInput!, organizationId: ID!) { | |
id | |
} |
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(email: $email, password: $password) { | |
token | |
expiresAt | |
user { | |
id | |
name | |
organizations { | |
id | |
name | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment