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