Skip to content

Instantly share code, notes, and snippets.

@celesteking
Created May 18, 2015 19:26
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 celesteking/909f62f95fb7116ec93b to your computer and use it in GitHub Desktop.
Save celesteking/909f62f95fb7116ec93b to your computer and use it in GitHub Desktop.
{
"query": {
"match_all":{}
},
"fields": "*"
}
{
"took": 1,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 1,
"max_score": 1,
"hits": [
{
"_index": "bank_v2",
"_type": "account",
"_id": "AU1oBJhb6iIEFt2buzJI",
"_score": 1
}
]
}
}
# NO
{
"took": 1,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 1,
"max_score": 1,
"hits": [
{
"_index": "bank_v2",
"_type": "account",
"_id": "AU1oBJhb6iIEFt2buzJI",
"_score": 1,
"_source": {
"account_number": 456,
"balance": 27658,
"firstname": "Rodriquez",
"lastname": "Flores",
"age": 31,
"gender": "F",
"address": "986 Wyckoff Avenue",
"employer": "Tourmania",
"email": "rodriquezflores@tourmania.com",
"city": "Eastvale",
"state": "HI"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment