console/packages/libraries/cli/examples/stitching.graphql
Kamil Kisiela dc3bc1ec87 Hello
2022-05-18 09:26:57 +02:00

15 lines
190 B
GraphQL

type Post {
id: ID!
message: String!
author: User
}
type User {
id: ID!
posts: [Post]
}
type Query {
post(id: ID!): Post
users(ids: [ID!]!): [User]! @merge(keyField: "id")
}