0
Get Issue
One script reply has been approved by the moderators Verified

Get an issue by ID. See the docs here

Created by hugo697 135 days ago Viewed 3209 times
0
Submitted by hugo697 Bun
Verified 135 days ago
1
import { LinearClient } from '@linear/sdk'
2

3
type Linear = {
4
	apiKey: string
5
}
6

7
export async function main(resource: Linear, issueId: string) {
8
	const linearClient = new LinearClient({ apiKey: resource.apiKey })
9

10
	const getIssue = await linearClient.issue(issueId)
11

12
	return getIssue
13
}
14