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