When trying to find and return all the paths connected to a specific node:
MATCH p = (DocID:ProjectList {DocumentID: "specificied_doc"})-[*]-(*)
RETURN p
Memgraph lab looses connection with a Query Failed, [object ProgressEvent]
error.
I am expecting about 41 paths to be shown with some depth and some without any depth.
Trying to use:
MATCH p = (DocID:ProjectList {DocumentID: "specificied_doc"})-[*]-(n)
RETURN p
Yields the same error without any results.
I am running memgraph in a docker desktop container, increasing the number of allocated cpus via wslconfig does not make any difference.