Created
February 1, 2015 18:13
-
-
Save mwawrusch/523c02c4084fb6c74933 to your computer and use it in GitHub Desktop.
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
helper-build-query | |
{"wildcard":{"displayName":"*"}} | |
✓ an empty query | |
{"filtered":{"query":{"bool":{"must":[{"match":{"displayName":"ama"}}]}}}} | |
✓ a query text query | |
{"filtered":{"query":{"bool":{"must":[{"match":{"displayName":"ama"}},{"match":{"displayName":"bank"}}]}}}} | |
✓ a query text with multiple strings query | |
{"filtered":{"query":{"bool":{"must":[{"match":{"displayName":"ama"}},{"match":{"displayName":"bank"}}]}}}} | |
✓ a query text with multiple strings query and excessive white space | |
{"filtered":{"query":{"bool":{"must":[{"match":{"displayName":"côte"}},{"match":{"displayName":"d’ivoire"}}]}}}} | |
✓ a query text with multiple strings query and special chars | |
{"filtered":{"filter":{"bool":{"must":[{"terms":{"_kind":["_person"]}},{"terms":{"baseCountry":["angola","south africa"]}},{"terms":{"sector":["agriculture"]}}]}}}} | |
✓ a query with multiple facets | |
{"filtered":{"query":{"bool":{"must":[{"match":{"displayName":"zen"}},{"match":{"displayName":"bank"}}]}},"filter":{"bool":{"must":[{"terms":{"_kind":["_person"]}},{"terms":{"baseCountry":["angola","south africa"]}},{"terms":{"sector":["agriculture"]}}]}}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment