mirror of
https://github.com/supabase/supabase.git
synced 2026-09-06 09:59:03 +08:00
## Context Migrates the remaining API requests to the pg-meta endpoint to use the query endpoint directly with the SQL from the pg-meta package. This touches the following: - policies - publications - triggers - views - materialized views - types ## To test Just need to verify that we're still fetching the data correctly on these pages - Database policies - Database publications - Database triggers - Database tables (views + materialized views) - Database types <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Bug Fixes** * Improved and stabilized loading of database metadata (views, triggers, RLS policies, publications, materialized views, and enum types), including more reliable schema-scoped filtering. * Updated policy loading behavior and related UI queries to consistently use schema arrays, improving cache correctness and consistency. * **Tests** * Updated end-to-end test synchronization to wait for the correct metadata responses using more specific request identifiers. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
7 lines
307 B
TypeScript
7 lines
307 B
TypeScript
export const databaseTriggerKeys = {
|
|
list: (projectRef: string | undefined, schemas?: string[]) =>
|
|
['projects', projectRef, 'database-triggers', schemas].filter(Boolean),
|
|
resource: (projectRef: string | undefined, id: string | undefined) =>
|
|
['projects', projectRef, 'resources', id] as const,
|
|
}
|