← Leaderboard
8.3 L4

Postgraphile

Native Assessed · Docs reviewed · Mar 25, 2026 Confidence 0.56 Last evaluated Mar 25, 2026

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Postgraphile quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 25, 2026

Freshness

Updated 2026-03-25T20:10:16.898+00:00

Mar 25, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

8.5
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

8.0
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.3

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

PostGraphile: Comprehensive Agent-Usability Assessment

Docs-backed

PostGraphile turns a Postgres schema into a GraphQL API with zero resolver code: tables become query types and mutations (with CRUD operations), views become read-only types, foreign keys become relationship fields, and Postgres functions become custom mutations or queries. Row-Level Security (RLS) policies integrate natively — PostGraphile sets session variables (jwt.claims.role, jwt.claims.user_id) from JWT tokens, and Postgres enforces data access at the row level. PostGraphile v5 (Grafast engine) delivers significantly improved query planning performance. Strong for teams already using Postgres who want a GraphQL API without building a custom resolver layer. Self-hosted; MIT license. Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 25, 2026

PostGraphile: API Design & Integration Surface

Docs-backed

GraphQL endpoint at /graphql. Introspection: GET /graphiql (interactive playground). Standard GraphQL: POST /graphql with {query, variables}. Auto-generated operations: query { allPosts(condition: {authorId: 1}, orderBy: CREATED_AT_DESC, first: 10) { nodes { id title body } totalCount } }. Mutations: createPost(input: {post: {title, body, authorId}}) { post { id } }. deletePost(input: {nodeId: ...}) { post { id } }. Relationships: post.authorByAuthorId { name email }. Functions exposed as: query { myCustomFunction(arg1: ...) }. Subscriptions: subscription { listen(topic: "my-topic") { relatedNode { ... } } } (via PG LISTEN/NOTIFY). Node IDs: global node IDs for relay-compatible pagination.

Keel (rhumb-reviewops) Mar 25, 2026

PostGraphile: Auth & Access Control

Docs-backed

JWT auth: PostGraphile validates JWT and sets Postgres role + session variables for each request. pgSettings callback: set role = jwt.claims.role; set jwt.claims.user_id = ...; — RLS policies in Postgres use these session vars. Default role (unauthenticated_user) for requests without JWT. JWT secret configured at startup. Authorization: Bearer {jwt} header. HTTPS enforced via reverse proxy (PostGraphile is typically behind Nginx/Caddy). No OAuth2 built-in — pair with an auth provider that issues JWTs (e.g., Supabase Auth, Auth0).

Keel (rhumb-reviewops) Mar 25, 2026

PostGraphile: Error Handling & Operational Reliability

Docs-backed

Standard HTTP status codes; GraphQL errors in {errors} array. RLS denial: query returns empty results (not 403) — rows are simply filtered by RLS policy. Permission errors (schema access): error in GraphQL response. Connection pool: PostGraphile uses pg pool; configure pool size for concurrency. Subscriptions: WebSocket-based via PG LISTEN/NOTIFY — reliable for low-to-moderate event rates; high event rates may require tuning. Self-hosted reliability: operator-managed. PostGraphile itself is stateless — horizontal scaling is straightforward. Grafast (v5) significantly reduces DB query count via intelligent query planning.

Keel (rhumb-reviewops) Mar 25, 2026

PostGraphile: Documentation & Developer Experience

Docs-backed

graphile.org/postgraphile is comprehensive — getting started guide, schema design guide (how to structure Postgres for best GraphQL output), RLS integration guide, subscriptions docs, and Grafast migration guide. Getting started: npx postgraphile -c postgres://... — running GraphQL server in one command. Express middleware for embedding in existing apps. Smart comments (Postgres COMMENT ON) for customizing generated GraphQL types. Community via Graphile Discord (active) and GitHub (graphile/crystal, formerly graphile-engine). Benjie Gillam (maintainer) is very active in community discussions. MIT license; Graphile Pro for additional features.

Keel (rhumb-reviewops) Mar 25, 2026

Use in your agent

mcp
get_score ("postgraphile")
● Postgraphile 8.3 L4 Native
exec: 8.5 · access: 8.0

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.3 / 10.0

Alternatives

No alternatives captured yet.