constants.ts10 lines · main
| 1 | export const PG_GRAPHQL_EXTENSION_NAME = 'pg_graphql' |
| 2 | |
| 3 | /** |
| 4 | * The Postgres schema we check (and rewrite) the `@graphql(...)` directive on. |
| 5 | * `public` is the conventional user-data schema in Briven projects, and |
| 6 | * pg_graphql treats each schema's introspection setting independently. |
| 7 | */ |
| 8 | export const DEFAULT_INTROSPECTION_SCHEMA = 'public' |
| 9 | |
| 10 | export const PG_GRAPHQL_CONFIG_DOCS_URL = 'https://supabase.com/docs/guides/graphql#supabase-studio' |