GraphQL - Queries
Given the fragment:
and the query:
Which fields will the query return?
fragment BookDetails on Book { title author }and the query:
query { book(id: 5) { ...BookDetails publishedYear } }Which fields will the query return?
