getFunctionsList() — supabase Function Reference
Architecture documentation for the getFunctionsList() function in Reference.generated.singleton.ts from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD 1bf57245_e9e4_508a_583c_f279cecc5990["getFunctionsList()"] 5df2c2c3_5161_a344_0c8e_a4d8e5d5d38e["functionDetails()"] 5df2c2c3_5161_a344_0c8e_a4d8e5d5d38e -->|calls| 1bf57245_e9e4_508a_583c_f279cecc5990 d0714c90_b2eb_810b_c046_3cb9bc737b59["FunctionSection()"] d0714c90_b2eb_810b_c046_3cb9bc737b59 -->|calls| 1bf57245_e9e4_508a_583c_f279cecc5990 style 1bf57245_e9e4_508a_583c_f279cecc5990 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/docs/features/docs/Reference.generated.singleton.ts lines 87–99
export async function getFunctionsList(sdkId: string, version: string) {
const key = `${sdkId}.${version}`
if (!functionsList.has(key)) {
const data = await readFile(
join(process.cwd(), 'features/docs', `./generated/${sdkId}.${version}.functions.json`),
'utf-8'
)
functionsList.set(key, JSON.parse(data))
}
return functionsList.get(key)
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does getFunctionsList() do?
getFunctionsList() is a function in the supabase codebase.
What calls getFunctionsList()?
getFunctionsList() is called by 2 function(s): FunctionSection, functionDetails.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free