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