mirror of
https://github.com/graphql-hive/console
synced 2026-04-30 02:47:17 +00:00
9 lines
73 B
GraphQL
9 lines
73 B
GraphQL
|
|
type Query {
|
||
|
|
users: [User!]
|
||
|
|
}
|
||
|
|
|
||
|
|
type User {
|
||
|
|
id: ID!
|
||
|
|
name: String!
|
||
|
|
}
|