Guy Korland
Guy Korland
### Do you need to file a feature request? - [x] I have searched the existing feature request and this feature request is not already filed. - [x] I believe...
Created by: @yype Source: https://github.com/RedisGraph/RedisGraph/issues/3050 Hi there, I come across the following query that will trigger a crash in RedisGraph v2.10.9 and the latest master branch. It can be reproduced...
Created by: @Sceat Source: https://github.com/RedisGraph/RedisGraph/issues/1228 What kind of approach could one take to be notified of graph updates, would keyspace notification or a similar system actually work ? If i...
FalkorDB CI should build and publish a brew of FalkorDB
FalkorDB CI should build and publish a snap of FalkorDB
This repo is using Opire - what does it mean? 👇💵 Everyone can add rewards for this issue commenting /reward 100 (replace 100 with the amount).🕵️♂️ If someone starts working...
``` CALL db.idx.fulltext.createNodeIndex({label:'A', stopwords:['the']}, 'name') CREATE (:A {name:"the gal"})\ CALL db.idx.fulltext.queryNodes('A', 'the gal') YIELD node, score RETURN score, node ``` No results are returned in this case
``` CALL db.idx.fulltext.createNodeIndex({label:'Team', stopwords:Default}, 'name') return 1 ``` Default list should be: ``` a, is, the, an, and, are, as, at, be, but, by, for, if, in, into, it, no,...
Add procedure to create full text index on Edges (like in nodes) to provide better control of the index create e.g. ``` CALL db.idx.fulltext.createEdgeIndex({type:'Movie', stopwords:['the']}, 'title') ```