feat: Add create issue API
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
module LinearMutations
|
||||
ISSUE_CREATE = <<~GRAPHQL.freeze
|
||||
mutation IssueCreate($input: IssueCreateInput!) {
|
||||
issueCreate(
|
||||
input: $input
|
||||
) {
|
||||
success
|
||||
issue {
|
||||
id
|
||||
title
|
||||
}
|
||||
}
|
||||
}
|
||||
GRAPHQL
|
||||
end
|
||||
Reference in New Issue
Block a user