GraphQL - Schema Definition Language (SDL)
Given this schema snippet:
and a query:
What will the API return if the book with id "1" exists?
type Query { book(id: ID!): Book }and a query:
{ book(id: "1") { title } }What will the API return if the book with id "1" exists?
