git-touch-android-ios-app/lib/graphql/gh_create_issue.graphql

14 lines
269 B
GraphQL

mutation GhCreateIssue($repoId: ID!, $title: String!, $body: String!) {
createIssue(input: { repositoryId: $repoId, title: $title, body: $body }) {
issue {
number
repository {
owner {
login
}
name
}
}
}
}