Hi @rinaldo_bonazzo !
What Neo4J version are you using? looks like you may need an index on your relationship, something that's possible from version 4.3.
Bennu
Hi @espen_solbu,
I solved the first type. Sorry about that. Yes, you can remove the min and max level as well as play with other variables. Native Cypher supports arbitrary lengths but it will not do it based on directions sub patterns (yet ).
Lemm...
Hi @espen_solbu !
Have you already installed APOC? If you haven't... do it. In any case, something like this may work:
match (p:Component) where p.name STARTS WITH 'A'
WITH p
CALL apoc.path.spanningTree(p, {
relationshipFilter: "PROVIDES>|<U...
Hi @guido !
Thanks for using NeoDash! About your query, looks like you have some empty strings as properties. Can you confirm this theory? In that case, removing empty string properties will improve your model while also reducing a bit your disk usag...
Well @lorenzh , how many path do you expect on ur previous example? Using the relationshigFilter you get one (and fast). MATCH (start) WHERE start.n_hash = "42222368"
MATCH (end) WHERE end.n_hash IN ["43603232"]
with start, end
CALL apoc.path.expand...