mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Linear Node): Add options to add a link and a comment to an issue (#13464)
This commit is contained in:
@@ -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
|
||||
}
|
||||
}`;
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user