(
key: IntegrationTaskKey,
params: L.CommentsQueryVariables = {}
)
| 510 | } |
| 511 | |
| 512 | comments( |
| 513 | key: IntegrationTaskKey, |
| 514 | params: L.CommentsQueryVariables = {} |
| 515 | ): LinearReturnType<CommentConnection> { |
| 516 | return this.runTask( |
| 517 | key, |
| 518 | async (client) => { |
| 519 | const edges = await client.comments(params); |
| 520 | return serializeLinearOutput(edges); |
| 521 | }, |
| 522 | { |
| 523 | name: "Get Comments", |
| 524 | params, |
| 525 | properties: queryProperties(params), |
| 526 | } |
| 527 | ); |
| 528 | } |
| 529 | |
| 530 | createComment( |
| 531 | key: IntegrationTaskKey, |
no test coverage detected