Skip to content

Instantly share code, notes, and snippets.

@gugl
Forked from ferdinandsalis/create-client-mutation.gql
Created September 14, 2020 21:42
Show Gist options
  • Save gugl/c573ab07cd96c2cd40bd88788170c41d to your computer and use it in GitHub Desktop.
Save gugl/c573ab07cd96c2cd40bd88788170c41d to your computer and use it in GitHub Desktop.
mutation createClient(client: ClientInput!, organizationId: ID!) {
id
}
mutation loginUser(email: $email, password: $password) {
token
expiresAt
user {
id
name
email
organizations {
id
name
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment