As elasticsearch doc shows that we can execute query like this:
curl -XPOST 'localhost:9200/bank/_search?pretty' -d '
{
"query": { "match_all": {} },
"_source": ["account_number", "balance"]
}'
How can I do this query in spring data elasticsearch library?