mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-03-12 10:14:22 -05: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
|
|
}
|
|
}
|
|
}
|
|
}
|