constants.ts 443 B

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