Skip to content

Commit 37db3c3

Browse files
rename
1 parent e18b9a5 commit 37db3c3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

modules/ROOT/content-nav.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
*** xref:expressions/predicates/string-operators.adoc[]
7474
*** xref:expressions/predicates/path-pattern-expressions.adoc[]
7575
*** xref:expressions/predicates/type-predicate-expressions.adoc[]
76-
** xref:expressions/graph-element-operators.adoc[]
76+
** xref:expressions/node-relationship-operators.adoc[]
7777
** xref:expressions/mathematical-operators.adoc[]
7878
** xref:expressions/string-operators.adoc[]
7979
** xref:expressions/temporal-operators.adoc[]

modules/ROOT/pages/expressions/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For details and examples of specific expressions, see the following sections:
1414
** xref:expressions/predicates/string-operators.adoc[]: `STARTS WITH`, `ENDS WITH`, `CONTAINS`, `IS NORMALIZED`, `IS NOT NORMALIZED`, `=~`
1515
** xref:expressions/predicates/path-pattern-expressions.adoc[]: information about filtering queries with path pattern expressions.
1616
** xref:expressions/predicates/type-predicate-expressions.adoc[]: information about how to verify the value type of a Cypher expression.
17-
* xref:expressions/graph-element-operators.adoc[]: information about how to access property values with `.` and `[]`.
17+
* xref:expressions/node-relationship-operators.adoc[]: information about how to access `NODE` and `RELATIONSHIP` property values with `.` and `[]`.
1818
* xref:expressions/mathematical-operators.adoc[]: `+`, `-`, `*`, `/`, `%`, `^`.
1919
* xref:expressions/string-operators.adoc[]: `+`, `||`
2020
* xref:expressions/temporal-operators.adoc[]: `+`, `-`, `*`, `/`

modules/ROOT/pages/expressions/graph-element-operators.adoc renamed to modules/ROOT/pages/expressions/node-relationship-operators.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
= Graph element operators
2-
:description: Information about Cypher's graph element operators, which enable the querying and manipulation of nodes and relationships.
1+
= Node and relationship operators
2+
:description: Information about Cypher's node and relationship operators, which enable the querying and manipulation of nodes and relationships.
33

4-
Graph element operators allow you to manipulate and query `NODE` and `RELATIONSHIP` property values.
5-
Cypher contains the following graph element operators:
4+
Node and relationship operators allow you to manipulate and query `NODE` and `RELATIONSHIP` property values.
5+
Cypher contains the following node and relationship operators:
66

77
* Static property access: dot operator (`.`)
88
* Dynamic property access: subscript operator (`[]`)
99
10-
For functions that return metadata about `NODE` and `RELATIONSHIPS` values, see:
10+
For functions that return metadata about `NODE` and `RELATIONSHIP` values, see:
1111

1212
* xref:functions/scalar.adoc#functions-elementid[`elementId()`]
1313
* xref:functions/scalar.adoc#functions-endnode[`endNode()`]
@@ -136,7 +136,7 @@ RETURN p[$propertyName] AS middleName
136136

137137
== Handling `NULL` values
138138

139-
If a property (or property value) is missing in an expression that uses a graph element operator, the whole expression will evaluate to `NULL`.
139+
If a property (or property value) is missing in an expression that uses tries to access a property statically or dynamically, the whole expression will evaluate to `NULL`.
140140
The query below performs a xref:expressions/string-operators.adoc[string concatentation] on the `firstName`, `middleName`, and `lastName` properties on `Person` nodes.
141141
Note that `NULL` is returned for `Cecilia`, who lacks a `middleName` property.
142142

0 commit comments

Comments
 (0)