feat: Add create issue API

This commit is contained in:
Muhsin Keloth
2024-05-08 16:21:31 +05:30
parent 792bc5cf9d
commit bacf4f52ba
5 changed files with 49 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
module LinearMutations
ISSUE_CREATE = <<~GRAPHQL.freeze
mutation IssueCreate($input: IssueCreateInput!) {
issueCreate(
input: $input
) {
success
issue {
id
title
}
}
}
GRAPHQL
end