rano/graph/account.graphql

16 lines
208 B
GraphQL
Raw Normal View History

2024-11-01 14:25:30 +00:00
extend type Mutation {
login(email: String!, pwd: String!): AuthUser!
2024-11-01 14:25:30 +00:00
logout: Boolean!
}
2024-11-01 17:49:56 +00:00
extend type Query {
me: AuthUser
}
type AuthUser {
id: ID!
email: String!
displayName: String!
roleID: Int!
}