pg_graphql icon indicating copy to clipboard operation
pg_graphql copied to clipboard

GraphQL support for PostgreSQL

Results 71 pg_graphql issues
Sort by recently updated
recently updated
newest added

# Summary I have a basic table with an email column where I enabled RLS to only allow `INSERT` for `anon`. This is for a use case like a waitlist...

enhancement

## Summary Add support for `like`/`ilike`/`not like`/`not ilike` filtering to get a collection of records that matches the given filter string. E.g. `filter: { label: { like: "Egg%" } }`...

`drop extension pg_graphql; create extension pg_graphql;` causes a rebuilt but `graphql.rebuild_schema()` does not. TODO: - Reproduce consistently on supabase platform - Is it dependent on postgres/supabase_admin role? - Is it...

bug

**Describe the bug** We are using a third-party list component in our project that uses a single graphql query. Seems to be impossible to use with Supabse because we get...

bug

Hi, how do I need to create the tables to generate my interfaces and unions, or how do I edit the scheme file so I can implement this myself? ![Zrzut...

If a postgres enum variant is not a valid graphql `name`, loading the schema results in ```json { "errors": [ {"message": "Names must only contain [_a-zA-z0-9 but does not"} ]...

enhancement

**Describe the bug** Attempting to perform a query over columns of type `CHAR / CHAR(n)` returns empty results. Changing field type to `VARCHAR` fixes the filtering. **To Reproduce** Steps to...

bug

# Feature request ## Is your feature request related to a problem? Please describe. real-time all the things! ## Describe the solution you'd like ## Describe alternatives you've considered ##...

enhancement

Even though Supabase supports upsert, the mutation is not available from GraphQL Steps to reproduce the behavior: 1. Create the GraphiQL page against your project using the code here: https://github.com/supabase/supabase/discussions/6144...

enhancement

**Describe the bug** We have some queries that request a lot of nested data through various relationships and pivot tables. When running these large queries in our app (aka going...

question