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