Does Memgraph support subgraphs? I'm referring to projected graphs that are sometimes called subgraphs. Which graph projection functions are supported in Memgraph?
Here is the code that I've tried but that didn't work for me:
MATCH p=(n:Node)-[:CONNECTS_TO]->(m:Node)
WITH (p) as graph
CALL pagerank.get(graph, …) YIELD node, rank
RETURN node, rank;