PLATER graph schema generation cypher
YaphetKG opened this issue · 1 comments
YaphetKG commented
While loading one of the datasets that has quite large number of edges (~ 156675722), We discovered that the graph schema generation cypher we highly inefficient and doesn't complete for in a reasonable time .
Thinking maybe it might be better to modify the cypher as
MATCH (a)-[x]->(b) where not a:Concept and not b:Concept RETURN DISTINCT labels(a), type(x), labels(b)
And do the permutations that the original cypher did in python.