Skip to content

Commit ba55ab6

Browse files
authored
Merge branch 'dev' into graph-types
2 parents 631cb3f + 1ece2e5 commit ba55ab6

File tree

9 files changed

+29
-19
lines changed

9 files changed

+29
-19
lines changed

antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ nav:
77
- modules/ROOT/content-nav.adoc
88
asciidoc:
99
attributes:
10-
neo4j-version: '2025.09'
10+
neo4j-version: '2025.10'

modules/ROOT/content-nav.adoc

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,16 +91,18 @@
9191
** xref:functions/graph.adoc[]
9292
** xref:functions/list.adoc[]
9393
** xref:functions/load-csv.adoc[]
94-
** xref:functions/mathematical-logarithmic.adoc[]
95-
** xref:functions/mathematical-numeric.adoc[]
96-
** xref:functions/mathematical-trigonometric.adoc[]
94+
** Mathematical functions
95+
*** xref:functions/mathematical-logarithmic.adoc[]
96+
*** xref:functions/mathematical-numeric.adoc[]
97+
*** xref:functions/mathematical-trigonometric.adoc[]
9798
** xref:functions/predicate.adoc[]
9899
** xref:functions/scalar.adoc[]
99100
** xref:functions/spatial.adoc[]
100101
** xref:functions/string.adoc[]
101-
** xref:functions/temporal/duration.adoc[]
102-
** xref:functions/temporal/index.adoc[]
103-
** xref:functions/temporal/format.adoc[]
102+
** Temporal functions
103+
*** xref:functions/temporal/duration.adoc[]
104+
*** xref:functions/temporal/index.adoc[]
105+
*** xref:functions/temporal/format.adoc[]
104106
** xref:functions/user-defined.adoc[]
105107
** xref:functions/vector.adoc[]
106108

modules/ROOT/pages/functions/index.adoc

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,12 @@ LOAD CSV functions can be used to get information about the file that is process
207207
|===
208208

209209

210+
[[header-query-functions-mathematical]]
211+
== Mathematical functions
212+
213+
210214
[[header-query-functions-logarithmic]]
211-
== Logarithmic functions
215+
=== Logarithmic functions
212216

213217
These functions all operate on numerical expressions only, and will return an error if used on any other values.
214218

@@ -240,7 +244,7 @@ These functions all operate on numerical expressions only, and will return an er
240244

241245

242246
[[header-query-functions-numeric]]
243-
== Numeric functions
247+
=== Numeric functions
244248

245249
These functions all operate on numerical expressions only, and will return an error if used on any other values.
246250

@@ -280,7 +284,7 @@ These functions all operate on numerical expressions only, and will return an er
280284

281285

282286
[[header-query-functions-trigonometric]]
283-
== Trigonometric functions
287+
=== Trigonometric functions
284288

285289
These functions all operate on numerical expressions only, and will return an error if used on any other values.
286290

@@ -613,8 +617,12 @@ If the points are in a Cartesian CRS, the function returns the Euclidean distanc
613617
|===
614618

615619

620+
[[header-query-functions-temporal]]
621+
== Temporal functions
622+
623+
616624
[[header-query-functions-temporal-duration]]
617-
== Temporal duration functions
625+
=== Duration functions
618626

619627
`DURATION` values of the xref::values-and-types/temporal.adoc[temporal types] can be created manipulated using the following functions:
620628

@@ -645,7 +653,7 @@ If the points are in a Cartesian CRS, the function returns the Euclidean distanc
645653
|===
646654

647655
[[header-query-functions-temporal-instant-types]]
648-
== Temporal instant types functions
656+
=== Instant type functions
649657

650658
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:
651659

@@ -766,7 +774,7 @@ Values of the xref::values-and-types/temporal.adoc[temporal types] -- `DATE`, `Z
766774

767775
[role=label--cypher-25-only label--new-Neo4j-2025.09]
768776
[[header-query-functions-temporal-format]]
769-
== Temporal format functions
777+
=== Format functions
770778

771779
These functions format temporal instance and duration values:
772780

modules/ROOT/pages/functions/mathematical-logarithmic.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:table-caption!:
33

44
[[query-functions-logarithmic]]
5-
= Mathematical functions - logarithmic
5+
= Logarithmic functions
66

77
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].
88

modules/ROOT/pages/functions/mathematical-numeric.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:table-caption!:
33

44
[[query-functions-numeric]]
5-
= Mathematical functions - numeric
5+
= Numeric functions
66

77
Numeric mathematical functions operate on numeric expressions only, and will return an error if used on any other values.
88
See also xref:expressions/mathematical-operators.adoc[Mathematical operators].

modules/ROOT/pages/functions/mathematical-trigonometric.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:table-caption!:
33

44
[[query-functions-trigonometric]]
5-
= Mathematical functions - trigonometric
5+
= Trigonometric functions
66

77
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].
88

modules/ROOT/pages/functions/temporal/duration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
:description: Cypher provides functions allowing for the creation and manipulation of temporal `DURATION` values.
22

33
[[query-functions-temporal-duration]]
4-
= Temporal functions - duration
4+
= Duration functions
55
:table-caption!:
66

77
Duration functions allow for the creation and manipulation of temporal `DURATION` values.

modules/ROOT/pages/functions/temporal/format.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:table-caption!:
33

44
[[query-functions-temporal-format]]
5-
= Temporal functions - format
5+
= Format functions
66

77
[role=label--cypher-25-only label--new-Neo4j-2025.09]
88
[[query-functions-temporal-format-function]]

modules/ROOT/pages/functions/temporal/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:table-caption!:
33

44
[[query-functions-temporal-instant-types]]
5-
= Temporal functions - instant types
5+
= Instant type functions
66

77
Temporal functions allow for the creation and manipulation of values for each temporal type -- `DATE`, `ZONED TIME`, `LOCAL TIME`, `ZONED DATETIME`, and `LOCAL DATETIME`.
88

0 commit comments

Comments
 (0)