(
key: IntegrationTaskKey,
params: L.AttachmentsQueryVariables = {}
)
| 213 | } |
| 214 | |
| 215 | attachments( |
| 216 | key: IntegrationTaskKey, |
| 217 | params: L.AttachmentsQueryVariables = {} |
| 218 | ): LinearReturnType<AttachmentConnection> { |
| 219 | return this.runTask( |
| 220 | key, |
| 221 | async (client) => { |
| 222 | const edges = await client.attachments(params); |
| 223 | return serializeLinearOutput(edges); |
| 224 | }, |
| 225 | { |
| 226 | name: "Get Attachments", |
| 227 | params, |
| 228 | properties: queryProperties(params), |
| 229 | } |
| 230 | ); |
| 231 | } |
| 232 | |
| 233 | createAttachment( |
| 234 | key: IntegrationTaskKey, |
nothing calls this directly
no test coverage detected