feat(Linear Node): Add options to add a link and a comment to an issue (#13464)

This commit is contained in:
Jon
2025-06-12 16:40:58 +01:00
committed by GitHub
parent ecfb6674ef
commit a417ed3ac8
9 changed files with 1187 additions and 13 deletions

View File

@@ -218,4 +218,21 @@ export const query = {
}
}`;
},
addComment() {
return `mutation CommentCreate ($issueId: String!, $body: String!, $parentId: String) {
commentCreate(input: {issueId: $issueId, body: $body, parentId: $parentId}) {
success
comment {
id
}
}
}`;
},
addIssueLink() {
return `mutation AttachmentLinkURL($url: String!, $issueId: String!) {
attachmentLinkURL(url: $url, issueId: $issueId) {
success
}
}`;
},
};