Issue with using Multi Type query search with _msearch?

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.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.