datahub/datahub-frontend/conf/datahub-frontend.graphql
John Joyce 4cdef602b4
Enable mutation only in frontend (#2081)
Co-authored-by: John Joyce <john@acryl.io>
2021-02-03 11:34:16 -08:00

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
}