elasticsearch-query-builder icon indicating copy to clipboard operation
elasticsearch-query-builder copied to clipboard

Build query for an ElasticSearch client using a fluent interface

Results 5 elasticsearch-query-builder issues
Sort by recently updated
recently updated
newest added

- Add missing factory methods to `src/Query/Query.php` - Add missing factory methods to `src/Aggregation/Aggregation.php` - Applied code style linter - I did re-enable `use_nullable_type_declaration` that is set to off by...

Hello there, I believe that "composite aggregations" are currently missing in v3 https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-composite-aggregation.html This is currently the class I built to handle that, it is very basic at the moment...

I've started a full rewrite with better terminology and wider elastic support. It will also include test and documentation. Check the [UPGRADE.md](https://github.com/erichard/elasticsearch-query-builder/blob/main/UPGRADE-3.0.md) for more information ## Features - [ ]...

enhancement

Hello my friends I add a few simple code for adding average aggregation into this elastic query builder please check it

consider the following elastic query ``` `"aggs" => [ "read_ratio_avg" => [ "avg" => [ "field" => "read-ratio", ], ], ], "query" => [ "bool" => [ "must" => [...