mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
15 lines
190 B
GraphQL
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")
|
|
}
|