Hi,
I am trying to fetch fields within same attribute to send response.
Fetch "abc" "yui" pattern from full_message attribute.
GET /my_index/_search
{
"query": {
"multi_match": {
"query": [ "abc" , "yui" ] ,
"fields": "full_message"
}
}
}
Response:-
{
"error": {
"root_cause": [
{
"type": "parsing_exception",
"reason": "[multi_match] unknown token [START_ARRAY] after [query]",
"line": 4,
"col": 18
}
],
"type": "parsing_exception",
"reason": "[multi_match] unknown token [START_ARRAY] after [query]",
"line": 4,
"col": 18
},
"status": 400
}
Can someone please help