save checkpoint. addition features and their state. check some ofthem

This commit is contained in:
master
2026-02-10 07:54:44 +02:00
parent 4bdc298ec1
commit 5593212b41
211 changed files with 10248 additions and 1208 deletions

View File

@@ -457,7 +457,7 @@ app.MapGet("/graph/edges/by-evidence", async (string evidenceType, string eviden
var edges = await service.QueryByEvidenceAsync(tenant, evidenceType, evidenceRef, ct);
LogAudit(context, "/graph/edges/by-evidence", StatusCodes.Status200OK, sw.ElapsedMilliseconds);
return Results.Ok(new { evidenceType, evidenceRef, edges = edges.ToList() });
return Results.Ok(edges);
});
app.MapGet("/healthz", () => Results.Ok(new { status = "ok" }));