Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Website: fix grammar in a few places. #63

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/site/src/query-api/aggregations/sub-aggregations.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ within the overall `Artist` type:
* `Artist.tours[].shows`

ElasticGraph supports aggregations on these nested fields via `subAggregations`. This can be used
to aggregation directly on the data of one of these fields. For example, this query returns the
to aggregate directly on the data of one of these fields. For example, this query returns the
total sales for all albums of all artists:

{% highlight graphql %}
{{ site.data.music_queries.aggregations.TotalAlbumSales }}
{% endhighlight %}

Sub-aggregations can also be performed under the groupings of an outer aggregations. For example,
Sub-aggregations can also be performed under the groupings of an outer aggregation. For example,
this query returns the total album sales grouped by the home country of the artist:

{% highlight graphql %}
Expand Down
Loading