get_entity_edge
Retrieve a specific relationship connection from graph memory using its unique identifier to access source, target, and relationship details.
Instructions
Get an entity edge from the graph memory by its UUID.
Args:
uuid: UUID of the entity edge to retrieve
Returns:
Entity edge dictionary containing edge details:
{
"uuid": "edge-uuid",
"source_node_uuid": "source-uuid",
"target_node_uuid": "target-uuid",
"fact": "relationship description",
"episodes": ["episode-uuid-1", "episode-uuid-2"],
"valid_at": "2025-01-01T00:00:00Z",
"invalid_at": null
}
Example:
get_entity_edge(uuid="edge-uuid-123")
@REQ: REQ-graphiti-chunk-mcp
@BP: BP-graphiti-chunk-mcp
@TASK: TASK-007-MCPTools
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes |