Oliver Rice

Results 66 issues of Oliver Rice

Currently, the SPI connection uses `SPI_connect()` to establish a connection. https://github.com/tcdi/pgx/blob/7163fe2437f8305b57e461697005d48de3526bbb/pgx/src/spi.rs#L213-L218 By default, calls to `SPI_commit` and `SPI_rollback` on a connection opened with `SPI_connect` result in an immediate error (panic)....

Test case: https://github.com/supabase/pg_graphql/blob/master/test/sql/resolve_graphiql_schema.sql Output for the enum column ```json { + "args": [ + ], + "name": "status", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": {...

bug

Adds LW6 Friday blog post for pg_graphql v1.0 release @MildTomato the content is all here but there are no graphics yet. Please take a look when you the chance. thanks!

## What kind of change does this PR introduce? DDL changes in any schema force a full context (schema) reload for all connections. We don't want to change that behavior...

A list of breaking changes to enforce when moving to 2.0 - (maybe) Disable comment directives defining relationships in favor of explicit SQL functions - (WIP) Remove the requirement for...

GraphQL queries are typically passed as arguments to a prepared statement and are not logged. Transpired SQL queries executed via SPI are similarly unlogged. That makes it difficult for users...

enhancement

Add nested entities to `OrderBy` types For to-one relationships, this could be `order_by: {author: {id: desc}}` ```graphql query { articles ( order_by: {author: {id: desc}} ) { id ... author...

enhancement

mirroring https://supabase.com/docs/guides/integrations/prisma#missing-grants

documentation

Currently columns with composite types are filtered out for queries and mutations. They could be supported as shown below. Translating from ```sql create type "SemVer" as ( major int, minor...

enhancement