Skip to content

Commit 35bb27c

Browse files
query format fixes
1 parent 57b48d4 commit 35bb27c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/ROOT/pages/expressions/list-expressions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ The below query iterates over the `skills` property of each `Person` node and cr
519519
// tag::expressions_list_comprehension_properties[]
520520
[source, cypher]
521521
----
522-
MATCH (p:Person) WHERE p.skills IS NOT null
522+
MATCH (p:Person) WHERE p.skills IS NOT NULL
523523
ORDER BY p.name
524524
RETURN p.name AS name,
525525
[skill IN p.skills | skill + " expert"] AS modifiedSkills
@@ -568,7 +568,7 @@ List comprehension can be used to remove any unknown `null` values when concaten
568568
// tag::expressions_list_comprehension_concatenation_remove_null[]
569569
[source, cypher]
570570
----
571-
RETURN [x IN ([1, null, 3] || [null, 5, null]) WHERE x IS NOT null] AS listWithoutNull
571+
RETURN [x IN ([1, null, 3] || [null, 5, null]) WHERE x IS NOT NULL] AS listWithoutNull
572572
----
573573
// end::expressions_list_comprehension_concatenation_remove_null[]
574574

0 commit comments

Comments
 (0)