(
key: IntegrationTaskKey,
params: L.IssueRelationsQueryVariables = {}
)
| 1003 | } |
| 1004 | |
| 1005 | issueRelations( |
| 1006 | key: IntegrationTaskKey, |
| 1007 | params: L.IssueRelationsQueryVariables = {} |
| 1008 | ): LinearReturnType<IssueRelationConnection> { |
| 1009 | return this.runTask( |
| 1010 | key, |
| 1011 | async (client) => { |
| 1012 | const edges = await client.issueRelations(params); |
| 1013 | return serializeLinearOutput(edges); |
| 1014 | }, |
| 1015 | { |
| 1016 | name: "Get IssueRelations", |
| 1017 | params, |
| 1018 | properties: queryProperties(params), |
| 1019 | } |
| 1020 | ); |
| 1021 | } |
| 1022 | |
| 1023 | createIssueRelation( |
| 1024 | key: IntegrationTaskKey, |
nothing calls this directly
no test coverage detected