Elasticsearch - Search Results and Scoring
Given this Elasticsearch query snippet, what fields will be returned in the search results?
{
"_source": { "includes": ["title", "author"] },
"query": { "match_all": {} }
}