Skip to content

Commit 50f850e

Browse files
Fix more indentation.
1 parent 1827dd0 commit 50f850e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/ROOT/pages/queries/composed-queries/conditional-queries.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ For example, it cannot immediately succeed a `MATCH` clause.
132132
[source, cypher, role=test-fail]
133133
----
134134
MATCH (n)-[:WORKS_FOR]->(m:Person)
135-
WHEN m IS NULL THEN {
136-
MERGE (n)-[:WORKS_FOR]->(f: Person {name: 'Peter', age: 36})
137-
}
135+
WHEN m IS NULL THEN {
136+
MERGE (n)-[:WORKS_FOR]->(f: Person {name: 'Peter', age: 36})
137+
}
138138
RETURN n.name AS employees,
139139
m.name AS manager,
140140
f.name AS newManagerNode
@@ -166,7 +166,7 @@ Instead, if `WHEN` constructs are part of a larger query, they must either be pl
166166

167167
.Single conditional `CALL` subquery
168168
=====
169-
In this example, `WHEN` is used to execute a xref:subqueries/call-subquery.adoc[`CALL` subquery] for each row that the condition (`m IS NULL`) evaluates to `true`.
169+
In this example, `WHEN` is used to execute a xref:subqueries/call-subquery.adoc[`CALL` subquery] for each row that the condition (`m IS NULL`) evaluates to `true`.
170170
171171
.Conditional `CALL` subquery
172172
[source, cypher]

0 commit comments

Comments
 (0)