Created
July 20, 2016 20:27
-
-
Save athlonUA/3ba6fd27df86f70cbb3bc3b13711e05a to your computer and use it in GitHub Desktop.
elasticsearch aggregation by first letters of search fields
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
$field - the name of field to aggregate | |
$firstChars - the first letters to search aggregations values by | |
$data = [ | |
'query' => [ | |
'bool' => [ | |
'must' => [ | |
'query_string' => [ | |
'query' => $field . ':' . $firstChars . '*' | |
] | |
] | |
] | |
], | |
'size' => 0, | |
'aggregations' => [ | |
$field => [ | |
'terms' => [ | |
'field' => $field, | |
'size' => $limit, | |
'order' => [ | |
'_term' => 'asc' | |
] | |
] | |
] | |
] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment