MCPcopy
hub / github.com/IgnisDa/ryot / getUserMetadataList

Function getUserMetadataList

tests/src/utils.ts:137–145  ·  view source on GitHub ↗
(baseUrl: string, userApiKey: string)

Source from the content-addressed store, hash-verified

135}
136
137export async function getUserMetadataList(baseUrl: string, userApiKey: string) {
138 const client = getGraphqlClient(baseUrl);
139 const { userMetadataList } = await client.request(
140 UserMetadataListDocument,
141 { input: {} },
142 { Authorization: `Bearer ${userApiKey}` },
143 );
144 return userMetadataList.response.items;
145}
146
147export async function searchAudibleAudiobook(
148 baseUrl: string,

Callers 2

user.test.tsFile · 0.90
cache.test.tsFile · 0.90

Calls 1

getGraphqlClientFunction · 0.85

Tested by

no test coverage detected