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

Method issueLabels

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

Source from the content-addressed store, hash-verified

913 }
914
915 issueLabels(
916 key: IntegrationTaskKey,
917 params: L.IssueLabelsQueryVariables = {}
918 ): LinearReturnType<IssueLabelConnection> {
919 return this.runTask(
920 key,
921 async (client) => {
922 const edges = await client.issueLabels(params);
923 return serializeLinearOutput(edges);
924 },
925 {
926 name: "Get IssueLabels",
927 params,
928 properties: queryProperties(params),
929 }
930 );
931 }
932
933 createIssueLabel(
934 key: IntegrationTaskKey,

Callers

nothing calls this directly

Calls 3

runTaskMethod · 0.95
queryPropertiesFunction · 0.90
serializeLinearOutputFunction · 0.85

Tested by

no test coverage detected