bc²
bc²
for ```cypher MATCH p=((anna)-[:FriendOf*]->(bob)) RETURN p ``` `cypher-lint` gives: ``` :1:10: Invalid input '(': expected an identifier, a label, '{', a parameter or ')' MATCH p=((anna)-[:FriendOf*]->(bob)) ^ ``` but Neo4j...
A bit of context: I was translating TPC-H's 10th query, and forgot to put into scope the value of ` l_orderkey` from the `lineitem` table. Logica thus took the `l_orderkey...
Redisgraph 2.8.11, Redis 6.2.6 The documentation at https://redis.io/docs/stack/graph/cypher_support/#writing-clauses says REMOVE is not supported to modify properties, but says nothing about labels. ``` > GRAPH.QUERY test "MATCH (n1:Node1) REMOVE n1:Node1 RETURN...
Redisgraph 2.8.11, Redis 6.2.6 Minimal example: ``` 127.0.0.1:6379> GRAPH.QUERY test "MATCH (n) WITH collect(n) AS ns RETURN ns[0] + [true, 2, 3]" --compact (error) Type mismatch: expected String but was...
Redisgraph 2.8.11, Redis 6.2.6 Minimal example: ``` > GRAPH.QUERY test1 'CREATE (n1:Node) CREATE (n2:Node {n: id(n1)}) RETURN id(n1), n2.n' 1) 1) "id(n1)" 2) "n2.n" 2) 1) 1) (integer) 2 2)...
Redisgraph 2.8.11, Redis 6.2.6 Query: ``` CREATE (n {ns: []}) WITH n UNWIND [1,2,3] AS i SET n.ns = n.ns + i WITH collect(i) AS _, n RETURN n.ns ```...
Missing new value types like map and point. Also broken link to the page from https://redis.io/docs/stack/graph/design/client_spec/, linking to https://redis.io/docs/stack/graph/design/client_spec/result_structure#graph-entities instead of https://redis.io/docs/stack/graph/design/result_structure/.
would it be possible and desirable to offer completing functionality? (or is it available already and I missed it?) My intuition is that it could be done with a (hopefully...
some synsets have no links to any other synsets, like http://wnpt.sl.res.ibm.com/wn/synset?id=00894980-a mirrors https://github.com/globalwordnet/english-wordnet/issues/172
a very popular request for `pdf-tools` is the implementation of actual continuous scrolling, with multiple PDF pages per buffer (see https://github.com/politza/pdf-tools/issues/27). but alas, this is hard to implement, although a...