2021-01-22 15:44:00 -08:00
|
|
|
# This will host GQL schema extensions specific to the frontend.
|
|
|
|
|
2021-02-03 11:34:16 -08:00
|
|
|
extend schema {
|
|
|
|
mutation: Mutation
|
|
|
|
}
|
|
|
|
|
|
|
|
type Mutation {
|
2021-01-22 15:44:00 -08:00
|
|
|
logIn(username: String!, password: String!): CorpUser
|
|
|
|
}
|