summaryrefslogtreecommitdiffstats
path: root/src/auth0/auth0Authentication.graphql
blob: 1d4b1359004d0e08e252037396fa6d55a629f4bb (plain)
1
2
3
4
5
6
7
8
type AuthenticateUserPayload {
  id: String!
  token: String!
}

extend type Mutation {
  authenticateUser(accessToken: String!): AuthenticateUserPayload!
}