Skip to content

Commit 31e89f2

Browse files
standardise order
1 parent 9e4eb8a commit 31e89f2

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

modules/ROOT/pages/clauses/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This set is refined and augmented by subsequent parts of the query.
2020

2121
m| xref::clauses/filter.adoc[FILTER]
2222
| Adds filters to queries.
23-
label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
23+
label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
2424

2525
m| xref::clauses/match.adoc[MATCH]
2626
| Specify the patterns to search for in the database.
@@ -45,7 +45,7 @@ m| xref::clauses/finish.adoc[FINISH]
4545

4646
m| xref::clauses/let.adoc[LET]
4747
| Binds values to variables.
48-
label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
48+
label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
4949

5050
m| xref::clauses/return.adoc[RETURN ... [AS]]
5151
| Defines what to include in the query result set.

modules/ROOT/pages/functions/index.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ All trigonometric functions operate on radians, unless otherwise specified.
313313
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-cosh[`cosh()`]
314314
| `cosh(input :: FLOAT) :: FLOAT`
315315
| Returns the hyperbolic cosine of a `FLOAT`.
316-
label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
316+
label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
317317

318318
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-cot[`cot()`]
319319
| `cot(input :: FLOAT) :: FLOAT`
@@ -322,7 +322,7 @@ label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
322322
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-coth[`coth()`]
323323
| `coth(input :: FLOAT) :: FLOAT`
324324
| Returns the hyperbolic cotangent of a `FLOAT`.
325-
label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
325+
label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
326326

327327
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-degrees[`degrees()`]
328328
| `degrees(input :: FLOAT) :: FLOAT`
@@ -347,7 +347,7 @@ label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
347347
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-sinh[`sinh()`]
348348
| `sinh(input :: FLOAT) :: FLOAT`
349349
| Returns the hyperbolic sine of a `FLOAT`.
350-
label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
350+
label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
351351

352352
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-tan[`tan()`]
353353
| `tan(input :: FLOAT) :: FLOAT`
@@ -356,7 +356,7 @@ label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
356356
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-tanh[`tanh()`]
357357
| `tanh(input :: FLOAT) :: FLOAT`
358358
| Returns the hyperbolic tangent of a `FLOAT`.
359-
label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
359+
label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
360360

361361
|===
362362

modules/ROOT/pages/patterns/match-modes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Cypher supports two match modes:
99
The same restriction does not hold for nodes, which may be re-traversed any number of times in a matched path.
1010
This is Cypher’s default match mode, applicable to most use cases.
1111
* xref:patterns/match-modes.adoc#repeatable-elements[`REPEATABLE ELEMENTS`]: no restrictions on how often nodes and relationships can be traversed in a match for a graph pattern.
12-
This match mode is required in order for paths to be able to traverse a relationship more than once. label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
12+
This match mode is required in order for paths to be able to traverse a relationship more than once. label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
1313
1414
[[example-graph]]
1515
== Example graph

modules/ROOT/pages/patterns/reference.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1637,7 +1637,7 @@ MATCH ()-[r]->()-->(), ()-[r]-()
16371637
A match mode specifies whether or not a relationship can be matched more than once when matching graph patterns. Cypher contains two match modes:
16381638

16391639
* xref:patterns/reference.adoc#match-modes-rules-different-relationships[`DIFFERENT RELATIONSHIPS`] (default)
1640-
* xref:patterns/reference.adoc#match-modes-rules-repeatable-elements[`REPEATABLE ELEMENTS`] label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
1640+
* xref:patterns/reference.adoc#match-modes-rules-repeatable-elements[`REPEATABLE ELEMENTS`] label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
16411641

16421642
[[match-modes-syntax]]
16431643
=== Syntax

modules/ROOT/pages/queries/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ It also explains how to select the version of Cypher in which queries are run, a
99
* xref:queries/select-version.adoc[] label:new[Introduced in Neo4j 2025.06]
1010
* xref:queries/composed-queries/index.adoc[]
1111
** xref:queries/composed-queries/combined-queries.adoc[]
12-
** xref:queries/composed-queries/conditional-queries.adoc[] label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
13-
** xref:queries/composed-queries/sequential-queries.adoc[] label:new[Introduced in Neo4j 2025.06] label:cypher[Cypher 25 only]
12+
** xref:queries/composed-queries/conditional-queries.adoc[] label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
13+
** xref:queries/composed-queries/sequential-queries.adoc[] label:cypher[Cypher 25 only] label:new[Introduced in Neo4j 2025.06]
1414

0 commit comments

Comments
 (0)