Skip to content
Snippets Groups Projects
Commit ac648cc1 authored by Mantas Simkus's avatar Mantas Simkus
Browse files

edited CardinalityAggregation doc

parent e126ac81
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ A single-value metrics aggregation that calculates an approximate count of disti
```JSON
{
"aggregations" : {
"agg_author_count" : {
"author_count" : {
"cardinality" : {
"field" : "author"
}
......@@ -21,7 +21,8 @@ A single-value metrics aggregation that calculates an approximate count of disti
And now the query via DSL:
```php
$cardinalityAggregation = new CardinalityAggregation('author_count', 'author');
$cardinalityAggregation = new CardinalityAggregation('author_count');
$cardinalityAggregation->setField('author');
$search = new Search();
$search->addAggregation($cardinalityAggregation);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment