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

Method projectLinks

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

Source from the content-addressed store, hash-verified

1324 }
1325
1326 projectLinks(
1327 key: IntegrationTaskKey,
1328 params: L.ProjectLinksQueryVariables = {}
1329 ): LinearReturnType<ProjectLinkConnection> {
1330 return this.runTask(
1331 key,
1332 async (client) => {
1333 const edges = await client.projectLinks(params);
1334 return serializeLinearOutput(edges);
1335 },
1336 {
1337 name: "Get ProjectLinks",
1338 params,
1339 properties: queryProperties(params),
1340 }
1341 );
1342 }
1343
1344 createProjectLink(
1345 key: IntegrationTaskKey,

Callers

nothing calls this directly

Calls 3

runTaskMethod · 0.95
queryPropertiesFunction · 0.90
serializeLinearOutputFunction · 0.85

Tested by

no test coverage detected