File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -421,17 +421,19 @@ RETURN person {
421
421
.Cypher Params
422
422
[source,json]
423
423
----
424
- {
425
- "filterPersonId_MATCHES" : "ja.*"
426
- }
424
+ {
425
+ "filterPersonIdMatches" : "ja.*"
426
+ }
427
427
----
428
428
429
429
.Cypher
430
430
[source,cypher]
431
431
----
432
432
MATCH (person:Person)
433
- WHERE person.id =~ $filterPersonId_MATCHES
434
- RETURN person { .name } AS person
433
+ WHERE person.id =~ $filterPersonIdMatches
434
+ RETURN person {
435
+ .name
436
+ } AS person
435
437
----
436
438
437
439
=== Filter id _contains_
@@ -1495,16 +1497,18 @@ RETURN person {
1495
1497
[source,json]
1496
1498
----
1497
1499
{
1498
- "filterPersonName_MATCHES" : "Ja.*"
1500
+ "filterPersonNameMatches" : "Ja.*"
1499
1501
}
1500
1502
----
1501
1503
1502
1504
.Cypher
1503
1505
[source,cypher]
1504
1506
----
1505
1507
MATCH (person:Person)
1506
- WHERE person.name =~ $filterPersonName_MATCHES
1507
- RETURN person { .name } AS person
1508
+ WHERE person.name =~ $filterPersonNameMatches
1509
+ RETURN person {
1510
+ .name
1511
+ } AS person
1508
1512
----
1509
1513
1510
1514
=== Filter string _contains_
You can’t perform that action at this time.
0 commit comments