Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 327 Bytes

File metadata and controls

22 lines (18 loc) · 327 Bytes

Query Dsl

  • Json defined query:
    curl -XPOST 'http://localhost:9200/orders/_search?pretty=true' \
          -H 'content-type:application/json' \
          -d '
    {
     "query": {
        "bool": {
           "must": {
           "query_string" : {
              "query": "id:1"
              }
           }
        }
     }
    }'