(
key: IntegrationTaskKey,
params: L.ProjectsQueryVariables = {}
)
| 1189 | } |
| 1190 | |
| 1191 | projects( |
| 1192 | key: IntegrationTaskKey, |
| 1193 | params: L.ProjectsQueryVariables = {} |
| 1194 | ): LinearReturnType<ProjectConnection> { |
| 1195 | return this.runTask( |
| 1196 | key, |
| 1197 | async (client) => { |
| 1198 | const edges = await client.projects(params); |
| 1199 | return serializeLinearOutput(edges); |
| 1200 | }, |
| 1201 | { |
| 1202 | name: "Get Projects", |
| 1203 | params, |
| 1204 | properties: queryProperties(params), |
| 1205 | } |
| 1206 | ); |
| 1207 | } |
| 1208 | |
| 1209 | archiveProject( |
| 1210 | key: IntegrationTaskKey, |
no test coverage detected