Getting a subgraph from a big graph
Hi folks,I am attempting to get a subgraph and graph data(as '.txt 'or other formats) from a big graphApproach 1: Randomly sample all nodes types from the large graph MATCH (source: Node)-[r*..]-(target: Node) WHERE source.name<>target.name WITH so...