Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 536 Bytes

QueryDslCompound.md

File metadata and controls

22 lines (21 loc) · 536 Bytes

Query Dsl Compound Clause

curl 'localhost:9200/orders/orders/_search?pretty=true' \
  -H 'content-type:application/json' \
  -d '{
  "query" : {
    "bool" : {
      "must" : {
        "term" : { "id" : "1" }
      },
      "should": {
        "query_string" : { 
            "query" : "trackingId:*" 
        }
      }
    }
  }
}'