REST endpoints
Stub. Endpoint list will firm up when the service comes online.
GET /health # livenessGET /entities/{id} # fetch onePOST /entities # createPATCH /entities/{id} # update (audited)DELETE /entities/{id} # tombstone (audited)
GET /edges?from=&to=&type= # filter edgesPOST /edges # add edge (audited)DELETE /edges/{id} # remove edge (audited)
POST /query # flexible graph traversal (Cypher-lite or JSON-DSL)GET /events # audit log (paginated)All mutations require an authenticated agent token mapped to a graph entity. Responses are JSON. Errors use standard HTTP status codes.