Is it possible to use apoc.cloneSubgraphFromPaths (or similar) to clone a large graph in batches to prevent OOM?
Hi, I am attempting to clone a pretty large subgraph (needs to support cloning millions of nodes). Currently I have been utilizing apoc.cloneSubgraphFromPaths in the following manner: MATCH path=(doc:Document)-[*]->(:Node) WHERE id(doc) = 23398 WITH ...