(
key: IntegrationTaskKey,
params: L.IssueLabelsQueryVariables = {}
)
| 913 | } |
| 914 | |
| 915 | issueLabels( |
| 916 | key: IntegrationTaskKey, |
| 917 | params: L.IssueLabelsQueryVariables = {} |
| 918 | ): LinearReturnType<IssueLabelConnection> { |
| 919 | return this.runTask( |
| 920 | key, |
| 921 | async (client) => { |
| 922 | const edges = await client.issueLabels(params); |
| 923 | return serializeLinearOutput(edges); |
| 924 | }, |
| 925 | { |
| 926 | name: "Get IssueLabels", |
| 927 | params, |
| 928 | properties: queryProperties(params), |
| 929 | } |
| 930 | ); |
| 931 | } |
| 932 | |
| 933 | createIssueLabel( |
| 934 | key: IntegrationTaskKey, |
nothing calls this directly
no test coverage detected