Lior Kogan

Results 54 issues of Lior Kogan

RedisGraph 2.8.17 Creating the following graph ``` graph.query g "create (a:A1{aa:1,ab:2})-[r:R1{rr:3,rs:4}]->(b:B1{bb:3})" ``` I would like to export it to JSON, e.g., using ``` graph.query g "match (n) with collect(n) as...

new feature

RedisGraph 2.8.9 ``` 127.0.0.1:6379> GRAPH.QUERY g "with x return 0" 1) 1) "0" 2) 1) 1) (integer) 0 3) 1) "Cached execution: 0" 2) "Query internal execution time: 0.727200 milliseconds"...

bug

RedisGraph 2.8.15 All of the following return an error: ``` graph.query q "RETURN point({latitude:10, longitude:20}).latitude" ``` ``` graph.query q "WITH point({latitude: 3, longitude: 4}) AS p RETURN p.latitude" ``` ```...

new feature

Currently, RedisGraph does not support the following functions: ``` toBooleanList() toFloatList() toIntegerList() toStringList() ```

cypher
new feature

Currently, RedisGraph does not support the following functions: ``` toBoolean() toFloat() toBooleanOrNull() toFloatOrNull() toIntegerOrNull() toStringOrNull() split() ```

cypher
new feature

RedisGraph 2.8.15 The following invalid query is considered valid: ``` GRAPH.QUERY g "CREATE INDEX FOR (p:Person) ON (p.m.n, p.p.q)" ``` Since `m.n` and `p.q` are invalid property names, the command...

bug

RedisGraph 2.8.15 The following command sequence cause Redis to hang: ``` graph.delete q graph.query q "CREATE (e:Employer {loc:point({latitude:40.4, longitude:30.3})})" graph.query q "CREATE INDEX FOR (e:Employer) ON (e.loc)" graph.query q "MATCH...

bug

RedisGraph 2.8.15 The following invalid queries cause RedisGraph to crash ``` graph.query q "return ({1})--({})" graph.query q "return ({})--({1})" graph.query q "return ({1})--({1})" ``` Note that there are no crashes...

bug

RedisGraph 2.8.15 The following query: ``` graph.query g "create p = (a)-[r:R]->(b) with p return p" ``` returns ``` (error) _AR_EXP_UpdateEntityIdx: Unable to locate a value with alias p within...

bug