mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 09:20:21 -04:00
d122f289df
Add the ability to look up error code explanation in API Gateway logs. Also a bunch of GraphQL-related utilities and generated types for calling the Content API.
5 lines
171 B
TypeScript
5 lines
171 B
TypeScript
export const contentApiKeys = {
|
|
errorCodes: ({ code, service }: { code: string; service?: string }) =>
|
|
['content-api', 'error-codes', { code, service }] as const,
|
|
}
|