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

Method teams

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

Source from the content-addressed store, hash-verified

1549 }
1550
1551 teams(
1552 key: IntegrationTaskKey,
1553 params: L.TeamsQueryVariables = {}
1554 ): LinearReturnType<TeamConnection> {
1555 return this.runTask(
1556 key,
1557 async (client) => {
1558 const edges = await client.teams(params);
1559 return serializeLinearOutput(edges);
1560 },
1561 {
1562 name: "Get Teams",
1563 params,
1564 properties: queryProperties(params),
1565 }
1566 );
1567 }
1568
1569 createTeam(
1570 key: IntegrationTaskKey,

Callers 1

linear.tsFile · 0.80

Calls 3

runTaskMethod · 0.95
queryPropertiesFunction · 0.90
serializeLinearOutputFunction · 0.85

Tested by

no test coverage detected