my query is like this:
{ \"query\": { \"filtered\": { \"filter\": { \"bool\": { \"must\": [ { \"term\": {
The above is not a valid Query DSL. In the above Terms filter the values to "mediaType" field should be an array
It should be the following :
{ "query": { "filtered": { "filter": { "bool": { "must": [ { "term": { "online": 1 } }, { "terms": { "mediaType": ["flash"] } } ] } } } } }