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

Method issueRelations

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

Source from the content-addressed store, hash-verified

1003 }
1004
1005 issueRelations(
1006 key: IntegrationTaskKey,
1007 params: L.IssueRelationsQueryVariables = {}
1008 ): LinearReturnType<IssueRelationConnection> {
1009 return this.runTask(
1010 key,
1011 async (client) => {
1012 const edges = await client.issueRelations(params);
1013 return serializeLinearOutput(edges);
1014 },
1015 {
1016 name: "Get IssueRelations",
1017 params,
1018 properties: queryProperties(params),
1019 }
1020 );
1021 }
1022
1023 createIssueRelation(
1024 key: IntegrationTaskKey,

Callers

nothing calls this directly

Calls 3

runTaskMethod · 0.95
queryPropertiesFunction · 0.90
serializeLinearOutputFunction · 0.85

Tested by

no test coverage detected