You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,38 @@ Cypher 25 was introduced in Neo4j 2025.06 and can only be used on Neo4j 2025.06+
22
22
Features removed in Cypher 25 are still available on Neo4j 2025.06+ databases either by prepending a query with `CYPHER 5` or by having Cypher 5 as the default language for the database.
23
23
For more information, see xref:queries/select-version.adoc[].
WITH datetime('1986-11-18T6:04:45.123456789+01:00[Europe/Berlin]') AS dt
41
+
RETURN format(dt, "MM/dd/yyyy") AS US, format(dt, "dd/MM/yyyy") AS EU
42
+
----
43
+
44
+
| Cypher's new xref:functions/temporal/format.adoc[`format()`] function can create dynamically formatted string representations of temporal instance and duration types.
45
+
46
+
a|
47
+
label:functionality[]
48
+
label:new[]
49
+
50
+
New operator: `LockNodes`
51
+
52
+
53
+
a| Introduced xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-lock-nodes[`LockNodes`] operator, sometimes used in conjunction with the `LockingMerge` operator to lock nodes.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/functions/index.adoc
+30-5Lines changed: 30 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -207,8 +207,12 @@ LOAD CSV functions can be used to get information about the file that is process
207
207
|===
208
208
209
209
210
+
[[header-query-functions-mathematical]]
211
+
== Mathematical functions
212
+
213
+
210
214
[[header-query-functions-logarithmic]]
211
-
== Logarithmic functions
215
+
=== Logarithmic functions
212
216
213
217
These functions all operate on numerical expressions only, and will return an error if used on any other values.
214
218
@@ -240,7 +244,7 @@ These functions all operate on numerical expressions only, and will return an er
240
244
241
245
242
246
[[header-query-functions-numeric]]
243
-
== Numeric functions
247
+
=== Numeric functions
244
248
245
249
These functions all operate on numerical expressions only, and will return an error if used on any other values.
246
250
@@ -280,7 +284,7 @@ These functions all operate on numerical expressions only, and will return an er
280
284
281
285
282
286
[[header-query-functions-trigonometric]]
283
-
== Trigonometric functions
287
+
=== Trigonometric functions
284
288
285
289
These functions all operate on numerical expressions only, and will return an error if used on any other values.
286
290
@@ -613,8 +617,12 @@ If the points are in a Cartesian CRS, the function returns the Euclidean distanc
613
617
|===
614
618
615
619
620
+
[[header-query-functions-temporal]]
621
+
== Temporal functions
622
+
623
+
616
624
[[header-query-functions-temporal-duration]]
617
-
== Temporal duration functions
625
+
=== Duration functions
618
626
619
627
`DURATION` values of the xref::values-and-types/temporal.adoc[temporal types] can be created manipulated using the following functions:
620
628
@@ -645,7 +653,7 @@ If the points are in a Cartesian CRS, the function returns the Euclidean distanc
645
653
|===
646
654
647
655
[[header-query-functions-temporal-instant-types]]
648
-
== Temporal instant types functions
656
+
=== Instant type functions
649
657
650
658
Values of the xref::values-and-types/temporal.adoc[temporal types] -- `DATE`, `ZONED TIME`, `LOCAL TIME`, `ZONED DATETIME`, and `LOCAL DATETIME` -- can be created manipulated using the following functions:
651
659
@@ -764,6 +772,23 @@ Values of the xref::values-and-types/temporal.adoc[temporal types] -- `DATE`, `Z
Copy file name to clipboardExpand all lines: modules/ROOT/pages/functions/mathematical-logarithmic.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
:table-caption!:
3
3
4
4
[[query-functions-logarithmic]]
5
-
= Mathematical functions - logarithmic
5
+
= Logarithmic functions
6
6
7
7
Logarithmic mathematical functions operate on numeric expressions only, and will return an error if used on any other values. See also xref:expressions/mathematical-operators.adoc[Mathematical operators].
Copy file name to clipboardExpand all lines: modules/ROOT/pages/functions/mathematical-trigonometric.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
:table-caption!:
3
3
4
4
[[query-functions-trigonometric]]
5
-
= Mathematical functions - trigonometric
5
+
= Trigonometric functions
6
6
7
7
Trigonometric mathematical functions operate on numeric expressions only, and will return an error if used on any other values. See also xref:expressions/mathematical-operators.adoc[Mathematical operators].
0 commit comments