-
Notifications
You must be signed in to change notification settings - Fork 57
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
aggregation § on subquery page #949
Comments
Thank you for raising this, @v2belleville - we will look into it. |
@v2belleville The statement:
is correct, although it is slightly confusing because there doesn't seem to be enough context; particularly about what query is changed and from what. The query that is being referred to is actually: MATCH (p:Person)
RETURN p.name This query returns After adding the subquery the number of rows is changed because some do not result in a match. This is due to Ultimately, this section also seems out of place under the heading "Aggregations" since no aggregating functions are being used. It seems like it would function better under a separate section like "Cardinality". |
hi,
On the subqueries page, the example given for § aggregation https://neo4j.com/docs/cypher-manual/current/subqueries/call-subquery/
#call-aggregation
returns the same with or without a subquery
Which seem contradictory with the first sentence "Returning subqueries change the number of results of the query."
as a result, I can not figure what this § is about ...
The text was updated successfully, but these errors were encountered: