gitlab-org--gitlab-foss/app/assets/javascripts/boards/graphql/issue_create.mutation.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
191 B
GraphQL
Raw Normal View History

#import "ee_else_ce/boards/graphql/issue.fragment.graphql"
mutation CreateIssue($input: CreateIssueInput!) {
createIssue(input: $input) {
issue {
...Issue
}
errors
}
}