Created
February 26, 2015 06:47
-
-
Save anonymous/fa296dd6612192a30012 to your computer and use it in GitHub Desktop.
ElasticSearch Request Sample
This file contains 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": { | |
"filtered": { | |
"query": { | |
"multi_match": { | |
"query": "a", | |
"type": "cross_fields", | |
"operator": "AND", | |
"fields": [ | |
"employeeId", | |
"firstName", | |
"lastName", | |
"primaryEmail", | |
"secondaryEmail" | |
] | |
} | |
}, | |
"filter": { | |
"and" : { | |
"filters" : [ | |
{ | |
"nested" : { | |
"path" : "udfFields", | |
"filter" : { | |
"bool" : { | |
"must" : [ | |
{"term" : {"udfFields.fieldId" : 1}}, | |
{"terms" : {"udfFields.value" : ["A"]}} | |
] | |
} | |
} | |
} | |
}, | |
{ | |
"terms" : {"engagements.id" : [1]} | |
}, | |
{ | |
"nested" : { | |
"path" : "udfFields", | |
"filter" : { | |
"bool" : { | |
"must" : [ | |
{"term" : {"udfFields.fieldId" : 2}}, | |
{"terms" : {"udfFields.value" : ["B 2 A"]}} | |
] | |
} | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment