mirror of
https://github.com/graphql-hive/console
synced 2026-04-29 18:37:17 +00:00
Co-authored-by: Patrick Deniso <patrick.deniso@wealthsimple.com> Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
15 lines
143 B
GraphQL
15 lines
143 B
GraphQL
type Query {
|
|
users: [User!]
|
|
}
|
|
|
|
enum UserRole {
|
|
ADMIN
|
|
EDITOR
|
|
}
|
|
|
|
type User {
|
|
id: ID!
|
|
name: String!
|
|
email: String!
|
|
role: UserRole
|
|
}
|