Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Created May 29, 2018 08:54
Show Gist options
  • Select an option

  • Save selcukusta/8195554ee83c84ed41914802728c5380 to your computer and use it in GitHub Desktop.

Select an option

Save selcukusta/8195554ee83c84ed41914802728c5380 to your computer and use it in GitHub Desktop.
{
"query": {
"bool": {
"must": [
{
"term": {
"event": {
"value": true
}
}
},
{
"bool": {
"should": [
{
"match": {
"city": {
"query": "istanbul"
}
}
},
{
"term": {
"categoryId": {
"value": 3
}
}
},
{
"bool": {
"must": [
{
"range": {
"startDate": {
"gte": "2018-05-15T11:48:28.7168695+03:00"
}
}
},
{
"range": {
"endDate": {
"lte": "2018-05-22T11:48:28.7168695+03:00"
}
}
}
]
}
}
]
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment