123456789101112131415 |
- # import * from './database/generated/prisma.graphql'
- type Query {
- projects(where: ProjectWhereInput, orderBy: ProjectOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Project]!
- projectVersions(where: ProjectVersionWhereInput, orderBy: ProjectVersionOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ProjectVersion]!
- uploads: [File]
- me: User!
- }
- type Mutation {
- createCharacterization(data: CharacterizationCreateInput!): Characterization!
- createUser(name: String!, email: String!, abbreviation: String!, password: String!): User!
- userLogin(email: String!, password: String!): User!
- userLogout: String!
- }
|