Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 526 Bytes

QueryDslCompound.md

File metadata and controls

20 lines (19 loc) · 526 Bytes

Query Dsl Compound Clause

curl 'localhost:9200/ordering/orders/_search?pretty=true' -d '{
   "query" : {
      "bool" : {
         "must" : {
            "term" : { "id" : "1" }
         },
         "must": {
            "query_string" : { 
               "query" : "trackingId:*" 
            }
         }
      }
   }
}'