neo4j_search_relationships
Search for graph relationships by specifying source node labels, properties, relationship type, and target node labels to find matching edges in a Neo4j database.
Instructions
Search for relationships (edges) in Neo4j.
Finds patterns (from_node)-[rel]->(to_node) matching the given filters.
Args: from_label: Label of the source node. from_properties: Property filters on the source node. rel_type: Relationship type to match (e.g. "PAGOU", "PERTENCE"). to_label: Label of the target node. to_properties: Property filters on the target node. limit: Maximum results (default 25, max 100).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| rel_type | No | ||
| to_label | No | ||
| from_label | No | ||
| to_properties | No | ||
| from_properties | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |