This is my result source.
{ "_source": { "Name": "Madagascar", "Genre": [ "Fiction" ], "AgeGroup": "11-13", "description": "Storks leave behind .", "duration": 3, "is_series":false}
I need to apply is_series = False & Genre=['Fiction']
. I tried this query, but it is not working. Please help.
{"query":{"bool":{"filter":{"terms":{"Genre":["Action"],"is_series":False}}}}}