Query Exercise
sudo service elasticsearch restartcurl -XPOST localhost:9200/orders/orders/2 \ -H 'content-type: application/json' \ -d ' { "id": "2", "placedOn": "2017-01-01T00:00:00Z", "status": "pending" }'curl -XPOST localhost:9200/orders/orders/3 \ -H 'content-type: application/json' \ -d ' { "id": "3", "placedOn": "2016-10-01T00:00:00Z", "status": "shipped" }'curl -XPOST localhost:9200/orders/orders/4 \ -H 'content-type: application/json' \ -d ' { "id": "4", "placedOn": "2016-01-01T00:00:00Z", "status": "received" }'curl 'localhost:9200/orders/orders/_search?pretty=true'
Last updated