GraphQL - Resolvers
Given the schema:
and the query:
What will the resolver receive as the
type Query { book(id: ID!): Book }and the query:
{ book(id: "2") { title author } }What will the resolver receive as the
args parameter?