You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 2, 2026. It is now read-only.
Review Findings: 5a-5d — LOW
5a. Inconsistent Error Handling
slog.Warn("Failed...", "error", err)return nil //nolint:nilerrfmt.Printfused instead ofslogin one place (resolvers.go:98)5b.
go 1.25in go.modGo 1.25 doesn't exist yet (as of early 2026). This is either aspirational or incorrect.
5c. Magic Numbers
Hardcoded values throughout: batch sizes (100, 900, 1000), buffer sizes (100, 1000), timeouts. These should be constants or configurable.
5d. Missing CORS Headers
No CORS middleware configured. The GraphQL and admin endpoints will be unusable from browser-based clients without proper CORS.
Fix
From codebase review §5a-5d