Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions modules/ROOT/content-nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
** xref:clauses/call.adoc[]
** xref:clauses/create.adoc[]
** xref:clauses/delete.adoc[]
** xref:clauses/filter.adoc[]
** xref:clauses/finish.adoc[]
** xref:clauses/foreach.adoc[]
** xref:clauses/limit.adoc[]
Expand Down
1 change: 1 addition & 0 deletions modules/ROOT/images/filter_clause.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ These codes order the features in the table below.
| * GQL's `PERCENTILE_CONT()` function is equivalent to Cypher's xref:functions/aggregating.adoc#functions-percentilecont[`percentileCont()`] function.
* GQL's `PERCENTILE_DISC()` function is equivalent to Cypher's xref:functions/aggregating.adoc#functions-percentiledisc[`percentileDisc()`] function.

| GQ08
| `FILTER` statement
| Selects a subset of the records of the current working table.
Cypher uses xref:clauses/with.adoc[`WITH`] instead.

| GQ09
| `LET` statement
| Adds columns to the current working table.
Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/appendix/gql-conformance/index.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:description: Overview of Cypher's conformance to GQL.
= GQL conformance

*Last updated*: 21 February 2025 +
*Last updated*: 27 February 2025 +
*Neo4j version*: 2025.03

GQL is the new link:https://www.iso.org/home.html[ISO] International Standard query language for graph databases.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,11 @@ For example, GQL’s graph reference values `CURRENT_GRAPH` and `CURRENT_PROPERT
| xref:queries/composed-queries/combined-queries.adoc[`UNION`]
|

| GQ08
| `FILTER` statement
| xref:clauses/filter.adoc[`FILTER`]
|

| GQ13
| `ORDER BY` and page statement: `LIMIT`
| xref:clauses/limit.adoc[`LIMIT`], xref:clauses/order-by.adoc[`ORDER BY`]
Expand Down
Loading