Skip to content

Instantly share code, notes, and snippets.

@athlonUA
Created July 20, 2016 20:27
Show Gist options
  • Save athlonUA/3ba6fd27df86f70cbb3bc3b13711e05a to your computer and use it in GitHub Desktop.
Save athlonUA/3ba6fd27df86f70cbb3bc3b13711e05a to your computer and use it in GitHub Desktop.
elasticsearch aggregation by first letters of search fields
$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