Skip to content

Instantly share code, notes, and snippets.

@michalczukm
Created January 22, 2018 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michalczukm/e0a43fae03a0a38986f03dc3c39997ac to your computer and use it in GitHub Desktop.
Save michalczukm/e0a43fae03a0a38986f03dc3c39997ac to your computer and use it in GitHub Desktop.
Get Elastic Search (ELS) data via cURL, to file
curl -X GET http://localhost:9200/dev-1/categorysearchproductmodel/_search?pretty=true -d '{
"sort" : [
{ "_uid" : {"order" : "asc"}}
],
"query": {
"match_all": {}
}
}' > els-now.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment