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.

Listing all existing properties but only for Relationships

joe1
Node Link

Hi,

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

Cheers

1 REPLY 1

ameyasoft
Graph Maven
  1. Try this
  2. MATCH (n)-[r]-()
    with distinct type(r) as rel, keys(r) as props
    return rel, props order by rel