1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

Merge branch 'master' of github.com:redis/node-redis

This commit is contained in:
Leibale Eidelman
2022-11-01 16:12:47 -04:00

View File

@@ -24,7 +24,9 @@ await graph.query(
const result = await graph.roQuery(
'MATCH (r:Rider)-[:rides]->(t:Team { name: $name }) RETURN r.name AS name',
{
name: 'Apollo'
params: {
name: 'Apollo'
}
}
);