Query Choices
curl 'localhost:9200/ordering/order/_search?pretty=true' -d ' { "fields": ["planedOn"] }'curl -XPOST 'localhost:9200/ordering/order/_search?pretty=true' -H 'content-type: application/json' -d ' { "query": { "bool": { "filter": { "term": { "status": "pending" } } } } }'
Last updated