(
key: IntegrationTaskKey,
params: L.TeamsQueryVariables = {}
)
| 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, |
no test coverage detected