redisgraph-rb icon indicating copy to clipboard operation
redisgraph-rb copied to clipboard

A Ruby client for RedisGraph

Results 4 redisgraph-rb issues
Sort by recently updated
recently updated
newest added

It took me a while to figure out that this client does not support returning a path from a query: [https://github.com/RedisGraph/redisgraph-rb/blob/9d39bfdea98c6e315a66c9ddf6e886dd28396605/lib/redisgraph/query_result.rb#L14](https://github.com/RedisGraph/redisgraph-rb/blob/9d39bfdea98c6e315a66c9ddf6e886dd28396605/lib/redisgraph/query_result.rb#L14) Are there plans to support this ? or continue...

Latest version of RedisGraph support node with multiple labels this needs to be reflected in the client when creating a node and when parsing a result that contains node

``` GRAPH.QUERY "MATCH (p:Person {name: $name_param, birth_year: $birth_year_param}) RETURN p" query_params "CYPHER name_param = 'Niccolò Machiavelli' birth_year_param = 1469" ```

enhancement