Skip to content

Instantly share code, notes, and snippets.

@morus12
Created December 3, 2013 13:21
Show Gist options
  • Save morus12/7769036 to your computer and use it in GitHub Desktop.
Save morus12/7769036 to your computer and use it in GitHub Desktop.
{
"size":"10",
"query":{
"query_string":{
"default_operator":"and",
"query":"test",
"phrase_slop":1,
"analyze_wildcard":true
}
},
"sort":[
"_score"
],
"fields":[
"conference_id",
"chat.visitor.nick",
"chat.operators.nick",
"chat.messages.message"
],
"filter":{
"and":[
{
"exists":{
"field":"chat.messages.message"
}
},
{
"exists":{
"field":"chat.visitor.livechat_id"
}
}
]
}
}
{
"size":"10",
"query":{
"query_string":{
"default_operator":"and",
"query":"<test>",
"phrase_slop":1,
"analyze_wildcard":true
}
},
"sort":[
"_score"
],
"fields":[
"conference_id",
"chat.visitor.nick",
"chat.operators.nick",
"chat.messages.message"
],
"filter":{
"and":[
{
"exists":{
"field":"chat.messages.message"
}
},
{
"exists":{
"field":"chat.visitor.livechat_id"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment