Last active
January 28, 2019 10:19
-
-
Save shyjuzz/d48973758e9ec80d6857690824b22591 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
{ | |
"took" : 6, | |
"timed_out" : false, | |
"_shards" : { | |
"total" : 5, | |
"successful" : 5, | |
"skipped" : 0, | |
"failed" : 0 | |
}, | |
"hits" : { | |
"total" : 3, | |
"max_score" : 1.0, | |
"hits" : [ | |
{ | |
"_index" : "hotels", | |
"_type" : "hotel", | |
"_id" : "2", | |
"_score" : 1.0, | |
"_source" : { | |
"name" : "Hotel Monaco", | |
"name_suggest" : "Hotel Monaco" | |
} | |
}, | |
{ | |
"_index" : "hotels", | |
"_type" : "hotel", | |
"_id" : "1", | |
"_score" : 1.0, | |
"_source" : { | |
"name" : "Mercure Hotel Munich", | |
"name_suggest" : "Mercure Hotel Munich" | |
} | |
}, | |
{ | |
"_index" : "hotels", | |
"_type" : "hotel", | |
"_id" : "3", | |
"_score" : 1.0, | |
"_source" : { | |
"name" : "Courtyard by Marriot Munich City", | |
"name_suggest" : "Courtyard by Marriot Munich City" | |
} | |
} | |
] | |
} | |
} |
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
{ | |
"took" : 3, | |
"timed_out" : false, | |
"_shards" : { | |
"total" : 5, | |
"successful" : 5, | |
"skipped" : 0, | |
"failed" : 0 | |
}, | |
"hits" : { | |
"total" : 0, | |
"max_score" : 0.0, | |
"hits" : [ ] | |
}, | |
"suggest" : { | |
"hotel_suggest" : [ | |
{ | |
"text" : "hot", | |
"offset" : 0, | |
"length" : 3, | |
"options" : [ | |
{ | |
"text" : "Hotel Monaco", | |
"_index" : "hotels", | |
"_type" : "hotel", | |
"_id" : "2", | |
"_score" : 1.0, | |
"_source" : { | |
"name" : "Hotel Monaco", | |
"name_suggest" : "Hotel Monaco" | |
} | |
} | |
] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment