Created
July 13, 2018 11:28
-
-
Save ZiiSolutions/4e27d7bdbb16e969e88765c95c067793 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
{ | |
"query": { | |
"bool": { | |
"must": [ | |
{ | |
"range": { | |
"firstcreated": { | |
"gte": "13/02/2018", | |
"lte": "13/07/2018", | |
"format": "dd/MM/yyyy" | |
} | |
} | |
} | |
], | |
"filter": { | |
"bool": { | |
"must": [ | |
{ | |
"terms": { | |
"profile": [ | |
"advisory", | |
"alert", | |
"story", | |
"story-enriched" | |
] | |
} | |
} | |
], | |
"must_not": [ | |
{ | |
"terms": { | |
"object.code": [ | |
"pacontent:private", | |
"pacontent:radar" | |
] | |
} | |
} | |
] | |
} | |
} | |
} | |
}, | |
"sort": { | |
"firstcreated": { | |
"order": "desc" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment