We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See: supabase/pg_graphql#146
Features to consider/test:
rebuild_schema()
May need @olirice help to update the existing project as well.
The text was updated successfully, but these errors were encountered:
the only compatibility thing to be aware of with this change is that errors have moved in one level to conform to the graphql spec
Before
{ "errors": "something went wrong" }
After
{ "errors": { "message": "something went wrong" } }
Sorry, something went wrong.
Also, will want to migrate project to a new Supabase project because:
(currently) have a filter for upgrades so that they only apply to projects created after the GA date
Until then, the currently deployed project will not receive pg_graphql updates.
See the following migration guide: https://supabase.com/docs/guides/database#migrating-between-projects
No branches or pull requests
See: supabase/pg_graphql#146
Features to consider/test:
rebuild_schema()
functionMay need @olirice help to update the existing project as well.
The text was updated successfully, but these errors were encountered: