Last active
December 28, 2018 11:52
-
-
Save nithinkashyapn/82a2b5c1234dc9185df90fd93e68cc79 to your computer and use it in GitHub Desktop.
ES Queries
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
| All candidates sourced today by everyone | |
| Count of candidatesources/_count | |
| { | |
| "query": { | |
| "range":{ | |
| "candidateCreationTime":{ | |
| "gte": "28/12/2018", | |
| "format": "dd/MM/yyyy" | |
| } | |
| } | |
| } | |
| } | |
| Count of candidates sourced last month by everyone | |
| GET candidatesources/_count | |
| { | |
| "query": { | |
| "range":{ | |
| "candidateCreationTime":{ | |
| "gte": "01/12/2018", | |
| "format": "dd/MM/yyyy" | |
| } | |
| } | |
| } | |
| } | |
| Count of candidates sourced last month by one person | |
| GET candidatesources/_count | |
| { | |
| "query": { | |
| "bool" : { | |
| "must" :{ | |
| "range":{ | |
| "candidateCreationTime":{ | |
| "gte": "01/12/2018", | |
| "format": "dd/MM/yyyy" | |
| } | |
| } | |
| }, | |
| "filter": { | |
| "term" : { "candidateSourcedBy" : "5c01284a3b433b4bb11cb36c" } | |
| } | |
| } | |
| } | |
| } | |
| Count of candidates sourced last month by everyone | |
| GET candidatesources/_count | |
| { | |
| "query": { | |
| "bool" : { | |
| "must" :{ | |
| "range":{ | |
| "candidateCreationTime":{ | |
| "gte": "01/12/2018", | |
| "format": "dd/MM/yyyy" | |
| } | |
| } | |
| }, | |
| "filter": { | |
| "term" : { "cadidateSourcedByCompany" : "5c0127b73b433b4bb11cb364" } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment