useProjectKeysQuery() — supabase Function Reference
Architecture documentation for the useProjectKeysQuery() function in projectApi.ts from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD e6fbd812_b6cb_0b9d_17c4_039fcd2ca878["useProjectKeysQuery()"] f60c05cc_24fd_1ee4_efe7_d25f34a3957d["VariableView()"] f60c05cc_24fd_1ee4_efe7_d25f34a3957d -->|calls| e6fbd812_b6cb_0b9d_17c4_039fcd2ca878 77186456_770b_c2d0_4e0e_c66ed27fc549["getProjectKeys()"] e6fbd812_b6cb_0b9d_17c4_039fcd2ca878 -->|calls| 77186456_770b_c2d0_4e0e_c66ed27fc549 style e6fbd812_b6cb_0b9d_17c4_039fcd2ca878 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/docs/lib/fetch/projectApi.ts lines 49–62
export function useProjectKeysQuery<TData = ProjectKeys>(
{ projectRef }: ProjectApiVariables,
{
enabled = true,
...options
}: Omit<UseQueryOptions<ProjectKeys, ProjectApiError, TData>, 'queryKey'> = {}
) {
return useQuery<ProjectKeys, ProjectApiError, TData>({
queryKey: projectApiKeys.api(projectRef),
queryFn: ({ signal }) => getProjectKeys({ projectRef }, signal),
enabled,
...options,
})
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does useProjectKeysQuery() do?
useProjectKeysQuery() is a function in the supabase codebase.
What does useProjectKeysQuery() call?
useProjectKeysQuery() calls 1 function(s): getProjectKeys.
What calls useProjectKeysQuery()?
useProjectKeysQuery() is called by 1 function(s): VariableView.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free