mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
14 lines
379 B
GraphQL
14 lines
379 B
GraphQL
mutation ($repositoryId: ID!, $baseRefName: String!, $headRefName: String!, $title: String!, $body: String, $draft: Boolean = false) {
|
|
createPullRequest(input: {
|
|
repositoryId: $repositoryId,
|
|
baseRefName: $baseRefName,
|
|
headRefName: $headRefName,
|
|
title: $title,
|
|
body: $body,
|
|
draft: $draft
|
|
}) {
|
|
pullRequest {
|
|
...pullRequestInfoShort
|
|
}
|
|
}
|
|
} |