We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08fdc66 commit 3d0b652Copy full SHA for 3d0b652
README.md
@@ -55,7 +55,7 @@ public class RedisGraphExample {
55
RedisGraphAPI api = new RedisGraphAPI("social");
56
57
api.query("CREATE (:person{name:'roi',age:32})");
58
- api.query("CREATE (:person{name:'amit',age:30})");
+ api.query("CREATE (:person{name:%s,age:%d})", "amit", 30);
59
60
api.query("MATCH (a:person), (b:person) WHERE (a.name = 'roi' AND b.name='amit') CREATE (a)-[knows]->(a)");
61
0 commit comments