Skip to content

Commit

Permalink
Fix test (string + failing setup)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-ottolenghi committed Jan 19, 2024
1 parent 4ff9167 commit 1512094
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions modules/ROOT/pages/values-and-types/type-predicate.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,10 @@ A graph containing the following nodes is used for the example below:
////
[source, cypher, role=test-setup]
----
CREATE (:Person {name: 'Alice', age:18}),
(:Person {name:'Bob', age:'20'}),
(:Person {name:'Charlie', age:21}),
CREATE
(:Person {name: 'Alice', age:18}),
(:Person {name:'Bob', age:'20'}),
(:Person {name:'Charlie', age:21})
----
////

Expand All @@ -153,7 +154,7 @@ RETURN n.name AS name, n.age AS age
[role="queryresult",options="header,footer",cols="2*<m"]
|===
| name | age
| Charlie | 21
| 'Charlie' | 21
2+d|Rows: 1
|===

Expand Down

0 comments on commit 1512094

Please sign in to comment.