console/packages/libraries/cli/examples/stitching.users.graphql

9 lines
141 B
GraphQL

type User {
id: ID!
username: String!
email: String!
}
type Query {
users(ids: [ID!]!): [User]! @merge(keyField: "id") @canonical
}