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