sqlite-graphrag 1.0.9

Local GraphRAG memory for LLMs in a single SQLite file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/cleanup-orphans.schema.json",
  "title": "CleanupOrphansResponse",
  "description": "Response emitted by `sqlite-graphrag cleanup-orphans` on stdout as a single JSON line.",
  "type": "object",
  "required": ["orphan_count", "deleted", "dry_run", "namespace", "elapsed_ms"],
  "additionalProperties": false,
  "properties": {
    "orphan_count": { "type": "integer", "minimum": 0, "description": "Total orphan entities found." },
    "deleted":      { "type": "integer", "minimum": 0, "description": "Entities deleted (0 when dry_run=true)." },
    "dry_run":      { "type": "boolean" },
    "namespace":    { "type": ["string", "null"], "description": "Namespace filter applied; null means global operation." },
    "elapsed_ms":   { "type": "integer", "minimum": 0, "description": "Handler wall-clock time in milliseconds." }
  }
}