Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 261 Bytes

File metadata and controls

17 lines (16 loc) · 261 Bytes

Query Dsl

  • Json defined query:
curl 'http://localhost:9200/ordering/order/_search?pretty=true' -d '
{
   "query": {
      "bool": {
         "must": {
         "query_string" : {
            "query": "id:1"
            }
         }
      }
   }
}'