rano/graph/account.graphql
Ankit Patial 26a00c9f7c working on auth.
mailer, basic setup with html template and a dev treansport
2024-11-15 21:42:15 +05:30

16 lines
208 B
GraphQL

extend type Mutation {
login(email: String!, pwd: String!): AuthUser!
logout: Boolean!
}
extend type Query {
me: AuthUser
}
type AuthUser {
id: ID!
email: String!
displayName: String!
roleID: Int!
}