mirror of
https://github.com/graphql-hive/console
synced 2026-04-29 18:37:17 +00:00
11 lines
109 B
GraphQL
11 lines
109 B
GraphQL
|
|
type Query {
|
||
|
|
users: [User!]
|
||
|
|
}
|
||
|
|
|
||
|
|
type User {
|
||
|
|
id: ID!
|
||
|
|
name: String!
|
||
|
|
email: String!
|
||
|
|
nickname: String
|
||
|
|
}
|