You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See xref::clauses/where.adoc#query-where-basic[Basic usage] for more details on dynamic property access.
@@ -165,10 +159,8 @@ All the existing properties on the node are replaced by those provided in the ma
165
159
|===
166
160
| +p.name+ | +p.age+ | +p.livesIn+
167
161
| +"Ellen"+ | +<null>+ | +"London"+
168
-
3+d|Rows: 1 +
169
-
Nodes created: 1 +
170
-
Properties set: 5 +
171
-
Labels added: 1
162
+
163
+
3+d|Rows: 1
172
164
|===
173
165
174
166
See xref::clauses/set.adoc#set-replace-properties-using-map[Replace all properties using a map and `=`] for more details on using the property replacement operator `=`.
@@ -194,10 +186,8 @@ The properties on the node are updated as follows by those provided in the map:
194
186
|===
195
187
| +p.name+ | +p.age+ | +p.livesIn+
196
188
| +"Ellen"+ | +20+ | +"London"+
197
-
3+d|Rows: 1 +
198
-
Nodes created: 1 +
199
-
Properties set: 4 +
200
-
Labels added: 1
189
+
190
+
3+d|Rows: 1
201
191
|===
202
192
203
193
See xref::clauses/set.adoc#set-setting-properties-using-map[Mutate specific properties using a map and `+=`] for more details on using the property mutation operator `+=`.
@@ -250,6 +240,7 @@ RETURN b - a AS result
250
240
|===
251
241
| +result+
252
242
| +7+
243
+
253
244
1+d|Rows: 1
254
245
|===
255
246
@@ -292,6 +283,7 @@ RETURN one > two AS result
292
283
|===
293
284
| +result+
294
285
| +true+
286
+
295
287
1+d|Rows: 1
296
288
|===
297
289
@@ -317,6 +309,7 @@ RETURN candidate
317
309
| +candidate+
318
310
| +"John"+
319
311
| +"Jonathan"+
312
+
320
313
1+d|Rows: 2
321
314
|===
322
315
@@ -531,6 +524,7 @@ RETURN number
531
524
| +4+
532
525
| +7+
533
526
| +9+
527
+
534
528
1+d|Rows: 3
535
529
|===
536
530
@@ -560,6 +554,7 @@ RETURN 'neo' + '4j' AS result
560
554
|===
561
555
| +result+
562
556
| +"neo4j"+
557
+
563
558
1+d|Rows: 1
564
559
|===
565
560
@@ -605,7 +600,8 @@ RETURN "the \u212B char" IS NORMALIZED AS normalized
605
600
|===
606
601
| normalized
607
602
| false
608
-
2+|Rows: 1
603
+
604
+
1+|Rows: 1
609
605
|===
610
606
611
607
Because the given `STRING` contains a non-normalized Unicode character (`\u212B`), `false` is returned.
@@ -632,7 +628,8 @@ RETURN "the \u212B char" IS NOT NORMALIZED AS notNormalized
632
628
|===
633
629
| notNormalized
634
630
| true
635
-
2+|Rows: 1
631
+
632
+
1+|Rows: 1
636
633
|===
637
634
638
635
Because the given `STRING` contains a non-normalized Unicode character (`\u212B`), and is not normalized, `true` is returned.
0 commit comments