CALL gds.graph.create.cypher(
'my-engine-graph',
'MATCH (n:Measurement),(m:Channel) RETURN id(n) AS id',
'MATCH (n)<--(m) RETURN id(m) AS source, id(n) AS target'
)
How to create Graph Catalog with 2 labels ?
How to create Graph Catalog with 2 relati...