Skip to content

Instantly share code, notes, and snippets.

@benoitguigal
Last active July 27, 2018 09:50
Show Gist options
  • Save benoitguigal/01d1a4bad3b7a96ea8fd55074e7e2127 to your computer and use it in GitHub Desktop.
Save benoitguigal/01d1a4bad3b7a96ea8fd55074e7e2127 to your computer and use it in GitHub Desktop.
GET users/_search
{
"query": {
"match_all": {}
}
}
{
"took": 14,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 1,
"max_score": 1,
"hits": [
{
"_index": "users",
"_type": "_doc",
"_id": "1",
"_score": 1,
"_source": {
"name": "Bobby Kennedy",
"date_of_birth": 553941680000,
"description": "I am passionate about Elasticsearch"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment