Skip to content

Commit aafc17e

Browse files
Cypher 25: Remove 5.x "Introduced in" labels and in-text notifications (#1056)
1 parent 4fa0814 commit aafc17e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+247
-441
lines changed

modules/ROOT/pages/appendix/tutorials/advanced-query-tuning.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ Predicates that will not work:
939939
If there is an existence constraint on the property, no predicate is required to trigger the optimization.
940940
For example, `CREATE CONSTRAINT constraint_name FOR (p:Person) REQUIRE p.name IS NOT NULL`
941941
942-
As of Neo4j {neo4j-version-exact}, predicates with parameters, such as `WHERE n.prop > $param`, can trigger _index-backed ORDER BY_.
942+
Predicates with parameters, such as `WHERE n.prop > $param`, can trigger _index-backed ORDER BY_.
943943
The only exception are queries with parameters of type `POINT`.
944944
====
945945

modules/ROOT/pages/clauses/call.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ A `VOID` procedure is a procedure that does not declare any result fields and re
259259
`VOID` procedure only produces side-effects and does not allow for the use of `YIELD`.
260260
Calling a `VOID` procedure in the middle of a larger query will simply pass on each input record (i.e., it acts like xref:clauses/with.adoc[`WITH *`] in terms of the record stream).
261261

262-
[role=label--new-5.24]
262+
263263
[[optional-call]]
264264
== Optional procedure calls
265265

modules/ROOT/pages/clauses/clause-composition.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,8 +573,7 @@ Later invocations of the subquery can observe writes made by earlier invocations
573573
Using the same example graph as above, this example shows the table of intermediate results and the state of the graph after each clause for the following query:
574574
575575
[NOTE]
576-
The below query uses a xref:subqueries/call-subquery.adoc#variable-scope-clause[variable scope clause] (introduced in Neo4j 5.23) to import variables into the `CALL` subquery.
577-
If you are using an older version of Neo4j, use an xref:subqueries/call-subquery.adoc#importing-with[importing `WITH` clause] instead.
576+
The below query uses a xref:subqueries/call-subquery.adoc#variable-scope-clause[variable scope clause] to import variables into the `CALL` subquery.
578577
579578
[source,cypher]
580579
----

modules/ROOT/pages/clauses/create.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Multiple labels are separated by colons.
2323
CREATE (charlie:Person:Actor {name: 'Charlie Sheen'}), (oliver:Person:Director {name: 'Oliver Stone'})
2424
----
2525

26-
As of Neo4j 5.18, multiple labels can also be separated by an ampersand `&`, in the same manner as it is used in xref:patterns/reference.adoc#label-expressions[label expressions].
26+
Multiple labels can also be separated by an ampersand `&`, in the same manner as it is used in xref:patterns/reference.adoc#label-expressions[label expressions].
2727
Separation by colon `:` and ampersand `&` cannot be mixed in the same clause.
2828

2929
.Query
@@ -205,7 +205,7 @@ Nodes created: 2 +
205205
Properties set: 4
206206
|===
207207

208-
[role=label--new-5.18]
208+
209209
[[insert-as-synonym-of-create]]
210210
== `INSERT` as a synonym of `CREATE`
211211

modules/ROOT/pages/clauses/delete.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ This query is only possible to run on nodes without any relationships connected
5858
Deleted 1 node
5959
----
6060

61-
[role=label--new-5.14]
61+
6262
[[delete-nodetach]]
6363
=== NODETACH keyword
6464

modules/ROOT/pages/clauses/finish.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
:description: The `FINISH` clause defines a query to have no result.
2-
:page-role: new-5.19
32
[[query-finish]]
43
= FINISH
54

modules/ROOT/pages/clauses/index.adoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,12 @@ m| xref::clauses/where.adoc[WHERE]
6363

6464
m| xref::clauses/order-by.adoc[ORDER BY [ASC[ENDING\] \| DESC[ENDING\]\]]
6565
| A sub-clause following `RETURN` or `WITH`, specifying that the output should be sorted in either ascending (the default) or descending order.
66-
As of Neo4j 5.24, it can also be used as a standalone clause.
6766

6867
m| xref::clauses/skip.adoc[SKIP] / xref::clauses/skip.adoc#offset-synonym[`OFFSET`]
6968
| Defines from which row to start including the rows in the output.
70-
As of Neo4j 5.24, it can be used as a standalone clause.
7169

7270
m| xref::clauses/limit.adoc[LIMIT]
7371
| Constrains the number of rows in the output.
74-
As of Neo4j 5.24, it can be used as a standalone clause.
7572

7673
|===
7774

modules/ROOT/pages/clauses/limit.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ d|Rows: 1 +
159159
Properties set: 1
160160
|===
161161

162-
[role=label--new-5.24]
162+
163163
[[limit-standalone-clause]]
164164
== Using `LIMIT` as a standalone clause
165165

modules/ROOT/pages/clauses/listing-functions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ m| LIST<STRING>
6666

6767
m| isDeprecated
6868
a| Whether the function is deprecated.
69-
label:new[Introduced in 5.9]
69+
7070
m| BOOLEAN
7171

7272
m| deprecatedBy
7373
a| The replacement function to use in case of deprecation; otherwise `null`.
74-
label:new[Introduced in 5.21]
74+
7575
m| STRING
7676

7777
|===

modules/ROOT/pages/clauses/listing-procedures.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ m| LIST<STRING>
6464

6565
m| isDeprecated
6666
a| Whether the procedure is deprecated.
67-
label:new[Introduced in 5.9]
67+
6868
m| BOOLEAN
6969

7070
m| deprecatedBy
7171
a| The replacement procedure to use in case of deprecation; otherwise `null`.
72-
label:new[Introduced in 5.21]
72+
7373
m| STRING
7474

7575
m| option

0 commit comments

Comments
 (0)