curl -XPOST 'localhost:9200/_search?pretty' -H 'Content-Type: application/json' -d'
{
"query": {
"bool" : {
"must_not" : {
"term" : { "choice" : "A" }
},
"must" : {
"term" : { "choice" : "B" }
},
"must_not" : {
"term" : { "choice" : "C" }
}
}
}
}
'
Created
July 23, 2017 17:03
-
-
Save kuy/5406beafcad93e23e61fad7ebc19b14e to your computer and use it in GitHub Desktop.
Bool
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment