Skip to content

Commit aa12e5f

Browse files
query fixes
1 parent 40781ca commit aa12e5f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

modules/ROOT/pages/clauses/where.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ Note that any path´s including `Timothy` and `Susan` are excluded by the `WHERE
284284
1+d|Rows: 3
285285
|===
286286

287-
For more information about using `WHERE` predicates in quantified path patterns, see xref:patterns/variable-length-patterns.adoc#quantified-path-patterns-predicates[Predicated in quantified path patterns].
287+
For more information about using `WHERE` predicates in quantified path patterns, see xref:patterns/variable-length-patterns.adoc#quantified-path-patterns-predicates[Predicates in quantified path patterns].
288288

289289
`WHERE` is not allowed in variable-length patterns using the non-GQL compliant xref:patterns/reference.adoc#variable-length-relationships[variable-length relationship] syntax.
290290

modules/ROOT/pages/expressions/mathematical-operators.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ RETURN -50 + 6 * 3 - 100 / 5 ^ 2 % 12 AS result1,
205205
|===
206206
| result1 | result2
207207

208-
| -36 | -36
208+
| -36.0 | -36.0
209209

210210
2+d|Rows: 1
211211
|===
@@ -238,7 +238,7 @@ RETURN (-50 + 6) * 3 - 100 / 5 ^ 2 % 12 AS result
238238
|===
239239
| result
240240

241-
| -136
241+
| -136.0
242242

243243
1+d|Rows: 1
244244
|===

modules/ROOT/pages/expressions/node-relationship-operators.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ RETURN p.firstName AS name
6464
.Access node and relationship properties statically
6565
[source, cypher]
6666
----
67-
MATCH (employee:Person)-[r:WORKS_FOR]-(manager:Person)
67+
MATCH (employee:Person)-[r:WORKS_FOR]->(manager:Person)
6868
RETURN employee.firstName AS employee,
6969
r.since AS employedSince,
7070
manager.firstName AS manager

modules/ROOT/pages/expressions/predicates/boolean-operators.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ RETURN n.name AS name, n.age AS age, n.role AS role
145145
| "Alice" | 65 | "Project manager"
146146
| "Cecil" | 25 | "Software developer"
147147
| "Cecilia" | 31 | "Software developer"
148-
| "Daniel" | 39 | "Director"
148+
| "Charlie" | 61 | "Security engineer"
149149
150-
3+d|Rows: 3
150+
3+d|Rows: 4
151151
152152
|===
153153

modules/ROOT/pages/expressions/predicates/comparison-operators.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ RETURN n.name AS name, n.age AS age
142142
2+d|Rows: 2
143143
|===
144144
145-
.Greater than or equal operator (`\=>`)
145+
.Greater than or equal operator (`>=`)
146146
[source, cypher]
147147
----
148148
MATCH (n:Person)
149-
WHERE n.age => 39
149+
WHERE n.age >= 39
150150
RETURN n.name AS name, n.age AS age
151151
----
152152

0 commit comments

Comments
 (0)