An aggregate function in GQL performs a calculation on multiple values and returns a single value
Accept field name with NUMBER
to calculate the maximum value of it for all elements until the current one
SELECT name, commit_count, max(commit_count) FROM branches
Accept field name with NUMBER
to calculate the minimum value of it for all elements until the current one
SELECT name, commit_count, min(commit_count) FROM branches
The function sum() is an aggregate function that returns the sum of items in a group
SELECT name, sum(insertions) FROM diffs GROUP BY name
The function avg() is an aggregate function that returns the average values of items in a group
SELECT name, avg(insertions) FROM commits GROUP BY name
The function count() is an aggregate function that returns the number of items in a group
SELECT name, max(name) FROM commits GROUP BY name