This is an automated email from the ASF dual-hosted git repository.
joshinnis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-age-website.git
The following commit(s) were added to refs/heads/master by this push:
new 882d5eb Fixed formatting in Aggregation Section
882d5eb is described below
commit 882d5eb91824e69611864e0440fae0a9e90d3add
Author: Josh Innis <[email protected]>
AuthorDate: Fri Oct 22 04:07:56 2021 -0700
Fixed formatting in Aggregation Section
---
docs/functions/aggregate_functions.md | 2 +-
docs/intro/aggregation.md | 4 +++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/docs/functions/aggregate_functions.md
b/docs/functions/aggregate_functions.md
index 2c6bdd0..b25b48c 100644
--- a/docs/functions/aggregate_functions.md
+++ b/docs/functions/aggregate_functions.md
@@ -1,6 +1,6 @@
# Aggregation Functions
-Functions that activate [auto aggregation](../intro/aggregation.html#).
+Functions that activate [auto aggregation](../intro/aggregation#).
## Data Setup
```
diff --git a/docs/intro/aggregation.md b/docs/intro/aggregation.md
index d49c8f1..8a784f3 100644
--- a/docs/intro/aggregation.md
+++ b/docs/intro/aggregation.md
@@ -3,7 +3,7 @@
## Introduction
-Generally an aggregation aggr(expr) processes all matching rows for each
aggregation key found in an incoming record (keys are compared using
[equivalence](./comparability.html#)).
+Generally an aggregation aggr(expr) processes all matching rows for each
aggregation key found in an incoming record (keys are compared using
[equivalence](../intro/comparability.html#)).
In a regular aggregation (i.e. of the form aggr(expr)), the list of aggregated
values is the list of candidate values with all null values removed from it.
@@ -261,11 +261,13 @@ Results
If the grouping key is considered unecessary for the query output, the
aggregation can be done in a WITH clause then passing information to the RETURN
clause.
+```
SELECT * FROM cypher('graph_name', $$
MATCH (x:L)
WITH count(*) + count(*) + x.a + x.b + x.c as column, x
RETURN column
$$) as (a agtype);
+```
Results
<table>