graphql-composition 0.12.2

An implementation of GraphQL federated schema composition
Documentation
type Mutation {
  addBook(input: AddBookInput!): Book
}

type Book {
  id: ID!
  title: String!
  author: String!
  yearPublished: Int
}

input AddBookInput {
  title: String!
  author: String!
  yearPublished: Int = 2023
}

type Query {
  books(limit: Int = 10): [Book!]! @shareable
}