Find Orphaned Entities
Find entities with no connections.
Lists entities that aren't linked to any memory or other entity. These are safe to clean up without losing meaningful knowledge.
Response Body
application/json
curl -X GET "http://127.0.0.1:14242/graph/orphans"{
"success": true,
"orphaned_entities": [
{
"entity_id": "string",
"entity_name": "string",
"entity_type": "string"
}
],
"count": 0
}