Skip to content

Instantly share code, notes, and snippets.

@shyjuzz
Last active January 28, 2019 10:19
Show Gist options
  • Save shyjuzz/d48973758e9ec80d6857690824b22591 to your computer and use it in GitHub Desktop.
Save shyjuzz/d48973758e9ec80d6857690824b22591 to your computer and use it in GitHub Desktop.
{
"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"
}
}
]
}
}
{
"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