I have:
[
{
"example_1": false,
"example_2": "example_string_1",
"example_3": "example_string_2",
"example_4": "example_string_3"
},
I need to write a python script, but testing it in POSTMAN right now. I need to print only blocks:
with ('false' example_1) AND (example_2 with one of two specific strings) AND (example_3 with one of the 6 specific strings)
I was testing some code snippets and
{
"default_field" : "example_1",
"query": "example_string_1"
was working nice, but I don't know how to add multiple conditions. I'm using this in POSTMAN's "BODY", something like:
{"query": (example_1:example_string_1 AND example_2:example_string_2) OR ...}
would be really nice (query DSL).