cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

How to create Graph Catalog with multiple labels & relations?

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 relationships ?

1 REPLY 1

MuddyBootsCode
Graph Steward

Hello and welcome to the community. It would help to know labels and which relationships you're trying to create but it would be the same type of operations you'd perform normally. Are you getting errors when you're trying to run this query?