Skip to content

Commit 81e7f84

Browse files
Merge branch 'dev' into vector_type
2 parents b12a42a + 1ece2e5 commit 81e7f84

File tree

16 files changed

+159
-151
lines changed

16 files changed

+159
-151
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
@@ -92,16 +92,18 @@
9292
** xref:functions/graph.adoc[]
9393
** xref:functions/list.adoc[]
9494
** xref:functions/load-csv.adoc[]
95-
** xref:functions/mathematical-logarithmic.adoc[]
96-
** xref:functions/mathematical-numeric.adoc[]
97-
** xref:functions/mathematical-trigonometric.adoc[]
95+
** Mathematical functions
96+
*** xref:functions/mathematical-logarithmic.adoc[]
97+
*** xref:functions/mathematical-numeric.adoc[]
98+
*** xref:functions/mathematical-trigonometric.adoc[]
9899
** xref:functions/predicate.adoc[]
99100
** xref:functions/scalar.adoc[]
100101
** xref:functions/spatial.adoc[]
101102
** xref:functions/string.adoc[]
102-
** xref:functions/temporal/duration.adoc[]
103-
** xref:functions/temporal/index.adoc[]
104-
** xref:functions/temporal/format.adoc[]
103+
** Temporal functions
104+
*** xref:functions/temporal/duration.adoc[]
105+
*** xref:functions/temporal/index.adoc[]
106+
*** xref:functions/temporal/format.adoc[]
105107
** xref:functions/user-defined.adoc[]
106108
** xref:functions/vector.adoc[]
107109

modules/ROOT/pages/clauses/call.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ RETURN count(*) AS results
208208
`YIELD` can be used to filter for specific results.
209209
This requires knowing the names of the arguments within a procedure's signature, which can either be found in the link:{neo4j-docs-base-uri}/operations-manual/current/procedures/[Operations Manual -> Procedures] or in the `signature` column returned by a `SHOW PROCEDURES` command (see example below).
210210
211-
.Find the argument names of `db.propertyKeys`
211+
.Find the argument names of `db.propertyKeys()`
212212
[source, cypher]
213213
----
214214
SHOW PROCEDURES YIELD name, signature

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)