1
0
mirror of https://github.com/git-touch/git-touch synced 2025-01-31 08:04:51 +01:00
git-touch-android-ios-app/lib/graphql/gh_create_issue.graphql

14 lines
269 B
GraphQL
Raw Normal View History

2020-01-07 18:33:41 +08:00
mutation GhCreateIssue($repoId: ID!, $title: String!, $body: String!) {
createIssue(input: { repositoryId: $repoId, title: $title, body: $body }) {
issue {
number
repository {
owner {
login
}
name
}
}
}
}