Query Dsl Term
select * from orders where id = "1"curl -XPOST 'localhost:9200/orders/orders/_search?pretty=true' \ -H 'content-type:application/json' \ -d '{ "query" : { "term": { "id": "1" } } }'curl -XPOST 'localhost:9200/orders/orders/_search?pretty=true' \ -H 'content-type:application/json' \ -d '{ "query" : { "constant_score" : { "filter" : { "term": { "id": "1" } } } } }'
Last updated