mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-17 03:48:15 +00:00
10 lines
184 B
GraphQL
10 lines
184 B
GraphQL
# This will host GQL schema extensions specific to the frontend.
|
|
|
|
extend schema {
|
|
mutation: Mutation
|
|
}
|
|
|
|
type Mutation {
|
|
logIn(username: String!, password: String!): CorpUser
|
|
}
|