Skip to content

Instantly share code, notes, and snippets.

@quiaro
Last active November 15, 2017 15:22
Show Gist options
  • Select an option

  • Save quiaro/a622c2a041f368178ee62434a4807ac7 to your computer and use it in GitHub Desktop.

Select an option

Save quiaro/a622c2a041f368178ee62434a4807ac7 to your computer and use it in GitHub Desktop.
Graphcool custom mutation for authentication function
type AuthenticatedUser {
id: String!
token: String!
}
extend type Mutation {
authenticateUser(idToken: String!): AuthenticatedUser!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment