(
key: IntegrationTaskKey,
params: L.DocumentsQueryVariables
)
| 653 | } |
| 654 | |
| 655 | documents( |
| 656 | key: IntegrationTaskKey, |
| 657 | params: L.DocumentsQueryVariables |
| 658 | ): LinearReturnType<DocumentConnection> { |
| 659 | return this.runTask( |
| 660 | key, |
| 661 | async (client) => { |
| 662 | const edges = await client.documents(params); |
| 663 | return serializeLinearOutput(edges); |
| 664 | }, |
| 665 | { |
| 666 | name: "Get Documents", |
| 667 | params, |
| 668 | properties: queryProperties(params), |
| 669 | } |
| 670 | ); |
| 671 | } |
| 672 | |
| 673 | createDocument( |
| 674 | key: IntegrationTaskKey, |
nothing calls this directly
no test coverage detected