Created
May 18, 2015 19:26
-
-
Save celesteking/909f62f95fb7116ec93b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": "[email protected]", | |
"city": "Eastvale", | |
"state": "HI" | |
} | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment