mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
8 lines
75 B
GraphQL
8 lines
75 B
GraphQL
type Query {
|
|
users: [User!]!
|
|
}
|
|
|
|
type User {
|
|
id: ID!
|
|
email: String!
|
|
}
|