MCPcopy Index your code
hub / github.com/triggerdotdev/trigger.dev / projectUpdates

Method projectUpdates

integrations/linear/src/index.ts:1402–1418  ·  view source on GitHub ↗
(
    key: IntegrationTaskKey,
    params: L.ProjectUpdatesQueryVariables = {}
  )

Source from the content-addressed store, hash-verified

1400 }
1401
1402 projectUpdates(
1403 key: IntegrationTaskKey,
1404 params: L.ProjectUpdatesQueryVariables = {}
1405 ): LinearReturnType<ProjectUpdateConnection> {
1406 return this.runTask(
1407 key,
1408 async (client) => {
1409 const edges = await client.projectUpdates(params);
1410 return serializeLinearOutput(edges);
1411 },
1412 {
1413 name: "Get ProjectUpdates",
1414 params,
1415 properties: queryProperties(params),
1416 }
1417 );
1418 }
1419
1420 createProjectUpdate(
1421 key: IntegrationTaskKey,

Callers

nothing calls this directly

Calls 3

runTaskMethod · 0.95
queryPropertiesFunction · 0.90
serializeLinearOutputFunction · 0.85

Tested by

no test coverage detected