Last active
September 15, 2017 05:06
-
-
Save andixurniawan/5e54ee12c5bc6945044352dc789a3bb6 to your computer and use it in GitHub Desktop.
Sample query nested query
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
| { | |
| "from": "0", | |
| "query": { | |
| "bool": { | |
| "filter": { | |
| "range": { | |
| "updated": { | |
| "gte": 1504844415000, | |
| "lte": 1505449215000 | |
| } | |
| } | |
| }, | |
| "must": { | |
| "match": { | |
| "category.level1": "dapur" | |
| } | |
| } | |
| } | |
| }, | |
| "size": "100", | |
| "sort": [{ | |
| "retention.order": { | |
| "mode": "max", | |
| "nested_filter": { | |
| "term": { | |
| "duration": 7 | |
| } | |
| }, | |
| "order": "desc" | |
| } | |
| }] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment