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
Add read-only support for PostgreSQL array columns
PostgreSQL array columns (int[], text[], boolean[], bigint[], etc.) were
previously unsupported and caused initialization failures. This change adds
read-only support so array columns are exposed as list types in GraphQL
([Int], [String], etc.) and as JSON arrays in REST responses.
Array columns are marked read-only and excluded from mutation input types
until write support is implemented. The implementation adds generic array
plumbing in the shared SQL layers and PostgreSQL-specific element type
resolution via information_schema udt_name mapping.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
0 commit comments