mirror of
https://github.com/graphql-hive/console
synced 2026-05-05 06:29:01 +00:00
17 lines
154 B
GraphQL
17 lines
154 B
GraphQL
|
|
type Query {
|
||
|
|
users: [User!]
|
||
|
|
}
|
||
|
|
|
||
|
|
enum UserRole {
|
||
|
|
ADMIN
|
||
|
|
EDITOR
|
||
|
|
VIEWER
|
||
|
|
}
|
||
|
|
|
||
|
|
type User {
|
||
|
|
id: ID!
|
||
|
|
name: String!
|
||
|
|
address: String
|
||
|
|
role: UserRole!
|
||
|
|
}
|