mirror of
https://github.com/git-touch/git-touch
synced 2024-12-18 19:22:54 +01:00
14 lines
269 B
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
|
|
}
|
|
}
|
|
}
|
|
}
|