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
fix(presigned-url): return PgSelectSingleStep from mutation entry points
The mutation entry points were returning a generic Grafast object() step,
which PostGraphile v5 rejects because sub-fields (requestUploadUrl, etc.)
expect a PgSelectSingleStep to resolve column values via $parent.get().
Replace the manual lambda + object() approach with resource.find(spec).single()
which returns a proper PgSelectSingleStep.
0 commit comments