Context
Discovered during review of #272 fix (stale Cypher patterns).
Description
The constraint table in codegraph/docs/schema.md line 49 shows:
| `:Rationale` | `id` | — |
But the loader (loader.py:173-174) creates two secondary indexes:
rationale_source on source_file
rationale_decision on decision_title
The table should read:
| `:Rationale` | `id` | `source_file`, `decision_title` |
Suggested approach
One-line fix in codegraph/docs/schema.md.
Context
Discovered during review of #272 fix (stale Cypher patterns).
Description
The constraint table in
codegraph/docs/schema.mdline 49 shows:But the loader (
loader.py:173-174) creates two secondary indexes:rationale_sourceonsource_filerationale_decisionondecision_titleThe table should read:
Suggested approach
One-line fix in
codegraph/docs/schema.md.