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

Function progressUpdate

tests/src/utils.ts:193–205  ·  view source on GitHub ↗
(
	baseUrl: string,
	userApiKey: string,
	input: MetadataProgressUpdateInput[],
)

Source from the content-addressed store, hash-verified

191}
192
193export async function progressUpdate(
194 baseUrl: string,
195 userApiKey: string,
196 input: MetadataProgressUpdateInput[],
197) {
198 const client = getGraphqlClient(baseUrl);
199 const { deployBulkMetadataProgressUpdate } = await client.request(
200 DeployBulkMetadataProgressUpdateDocument,
201 { input },
202 { Authorization: `Bearer ${userApiKey}` },
203 );
204 return deployBulkMetadataProgressUpdate;
205}
206
207export async function addEntitiesToCollection(
208 baseUrl: string,

Callers 1

cache.test.tsFile · 0.90

Calls 1

getGraphqlClientFunction · 0.85

Tested by

no test coverage detected