Hi ,
I have tried _msearch with following query .
{ "index": "testIndex", "type": "home" }
{ "query": { "match_all": {}}}
{ "index": "testIndex", "type": "persons" }
{ "query": { "match_all": {}}}
But response only contains first type data ie 'home' only . Why that happens ? Is this work with different search query on both types like home.name='one' in home type and person.name='david' in person type. Please suggest a solution.