Hi,
Is there a function that returns a list of existing properties *for Relationships* used in a database?
Cheers
Hi,
Is there a function that returns a list of existing properties *for Relationships* used in a database?
Cheers
Try this
MATCH (n)-[r]-()
with distinct type(r) as rel, keys(r) as props
return rel, props order by rel