I am trying to select all nodes that have a relationship with a specific property but return only those with redundant property values. For example:MATCH (:Node)-[a:Send{Flag: 'A'}]->(m:Node)
RETURN [m.Name, a.Port] AS outputIt returns["Device A", 22...