mirror of
https://github.com/graphql-hive/console
synced 2026-04-23 07:27:17 +00:00
10 lines
141 B
GraphQL
10 lines
141 B
GraphQL
|
|
type User {
|
||
|
|
id: ID!
|
||
|
|
username: String!
|
||
|
|
email: String!
|
||
|
|
}
|
||
|
|
|
||
|
|
type Query {
|
||
|
|
users(ids: [ID!]!): [User]! @merge(keyField: "id") @canonical
|
||
|
|
}
|