console/integration-tests/fixtures/breaking-schema-detailed.graphql
Mina Kong 02f5274850
feat(cli): separate dangerous changes from warnings in CLI schema check command (#3862)
Co-authored-by: Patrick Deniso <patrick.deniso@wealthsimple.com>
Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
2024-02-21 15:36:18 +01:00

16 lines
154 B
GraphQL

type Query {
users: [User!]
}
enum UserRole {
ADMIN
EDITOR
VIEWER
}
type User {
id: ID!
name: String!
address: String
role: UserRole!
}