rano/graph/account.graphql

16 lines
208 B
GraphQL
Raw Normal View History

2024-11-01 19:55:30 +05:30
extend type Mutation {
login(email: String!, pwd: String!): AuthUser!
2024-11-01 19:55:30 +05:30
logout: Boolean!
}
2024-11-01 23:19:56 +05:30
extend type Query {
me: AuthUser
}
type AuthUser {
id: ID!
email: String!
displayName: String!
roleID: Int!
}