Lets say i have a DB with 2 fields - name and age.
I am using a suggest query for the name, but I would like to get the age in same request.
For example want the next query to return the age as well -
query = {
'suggest': {
'my_suggestion': {
'text': 'Mark',
'term': {
'field': 'name'
}
}
}
}