123456789101112 |
- # import * from '../database/generated/prisma.graphql'
- type Query {
- users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User]!
- me: User!
- }
- type Mutation {
- createUser(name: String!, email: String!, abbreviation: String!, password: String!): User!
- userLogin(email: String!, password: String!): User!
- userLogout: String!
- }
|