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 ?

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?