MCPcopy Index your code
hub / github.com/langgenius/dify / list

Method list

cli/src/api/apps.ts:27–37  ·  view source on GitHub ↗
(q: ListQuery)

Source from the content-addressed store, hash-verified

25 }
26
27 async list(q: ListQuery): Promise<AppListResponse> {
28 return this.orpc.apps.get({
29 query: {
30 workspace_id: q.workspaceId,
31 page: q.page ?? 1,
32 limit: q.limit ?? 20,
33 mode: normalizeMode(q.mode),
34 name: q.name !== undefined && q.name !== '' ? q.name : undefined,
35 },
36 })
37 }
38
39 async describe(appId: string, fields?: readonly string[]): Promise<AppDescribeResponse> {
40 return this.orpc.apps.byAppId.describe.get({

Callers 12

runGetMemberFunction · 0.45
runGetWorkspaceFunction · 0.45
runGetAppFunction · 0.45
runAllWorkspacesFunction · 0.45
fetchOneFunction · 0.45
listAllSessionsFunction · 0.45
pickWorkspaceIdFunction · 0.45
apps.test.tsFile · 0.45
workspaces.test.tsFile · 0.45
members.test.tsFile · 0.45

Calls 2

normalizeModeFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected