GraphQL - Queries
Given this GraphQL query snippet:
What fields will be returned for an item of type
{
searchItems {
id
... on Book {
author
}
... on Movie {
director
}
}
}What fields will be returned for an item of type
Movie?