Listing all existing properties but only for Relationships

Hi,

Is there a function that returns a list of existing properties *for Relationships* used in a database?

Cheers

  1. Try this

  2. MATCH (n)-[r]-()

    with distinct type(r) as rel, keys(r) as props

    return rel, props order by rel