Hi, great minds! I am new to neo4j and currently exploring an existing graph to extract data for downstream tasks.I would like to get all pairs of nodes and their relationship from the graph. MATCH (n)-[r]-(n1) WHERE n<>n1 AND n1>n RETURN * This wil...