pg_graphql
pg_graphql copied to clipboard
GraphQL support for PostgreSQL
Is there a { returning: "minimal" } option for mutations on tables with RLS with only insert allowed
# 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...
## 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...
**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...
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"} ]...
**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...
# 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 ##...
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...
**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...