I'm working on a Neo4j plugin and need to retrieve a relationship by property value.
I have access to Neo4j GraphDatabaseService
which has a very convenient method GraphDatabaseService.findNode(Label label, String property , String value)
.
I am looking for the relationship-counterpart of this method, something like GraphDatabaseService.findRelationship(RelationshipType type, String property , String value)
.
Does this exist? Is it on the roadmap? Is there another way?