зеркало из https://github.com/github/docs.git
Коммит
336e712a71
|
@ -17709,6 +17709,16 @@ type Mutation {
|
|||
input: UpdatePullRequestInput!
|
||||
): UpdatePullRequestPayload
|
||||
|
||||
"""
|
||||
Merge HEAD from upstream branch into pull request branch
|
||||
"""
|
||||
updatePullRequestBranch(
|
||||
"""
|
||||
Parameters for UpdatePullRequestBranch
|
||||
"""
|
||||
input: UpdatePullRequestBranchInput!
|
||||
): UpdatePullRequestBranchPayload
|
||||
|
||||
"""
|
||||
Updates the body of a pull request review.
|
||||
"""
|
||||
|
@ -39276,6 +39286,41 @@ type UpdateProjectPayload {
|
|||
project: Project
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdatePullRequestBranch
|
||||
"""
|
||||
input UpdatePullRequestBranchInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The head ref oid for the upstream branch.
|
||||
"""
|
||||
expectedHeadOid: GitObjectID
|
||||
|
||||
"""
|
||||
The Node ID of the pull request.
|
||||
"""
|
||||
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UpdatePullRequestBranch
|
||||
"""
|
||||
type UpdatePullRequestBranchPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The updated pull request.
|
||||
"""
|
||||
pullRequest: PullRequest
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdatePullRequest
|
||||
"""
|
||||
|
|
|
@ -19291,6 +19291,16 @@ type Mutation {
|
|||
input: UpdatePullRequestInput!
|
||||
): UpdatePullRequestPayload
|
||||
|
||||
"""
|
||||
Merge HEAD from upstream branch into pull request branch
|
||||
"""
|
||||
updatePullRequestBranch(
|
||||
"""
|
||||
Parameters for UpdatePullRequestBranch
|
||||
"""
|
||||
input: UpdatePullRequestBranchInput!
|
||||
): UpdatePullRequestBranchPayload
|
||||
|
||||
"""
|
||||
Updates the body of a pull request review.
|
||||
"""
|
||||
|
@ -44411,6 +44421,41 @@ type UpdateProjectPayload {
|
|||
project: Project
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdatePullRequestBranch
|
||||
"""
|
||||
input UpdatePullRequestBranchInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The head ref oid for the upstream branch.
|
||||
"""
|
||||
expectedHeadOid: GitObjectID
|
||||
|
||||
"""
|
||||
The Node ID of the pull request.
|
||||
"""
|
||||
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UpdatePullRequestBranch
|
||||
"""
|
||||
type UpdatePullRequestBranchPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The updated pull request.
|
||||
"""
|
||||
pullRequest: PullRequest
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdatePullRequest
|
||||
"""
|
||||
|
|
|
@ -19291,6 +19291,16 @@ type Mutation {
|
|||
input: UpdatePullRequestInput!
|
||||
): UpdatePullRequestPayload
|
||||
|
||||
"""
|
||||
Merge HEAD from upstream branch into pull request branch
|
||||
"""
|
||||
updatePullRequestBranch(
|
||||
"""
|
||||
Parameters for UpdatePullRequestBranch
|
||||
"""
|
||||
input: UpdatePullRequestBranchInput!
|
||||
): UpdatePullRequestBranchPayload
|
||||
|
||||
"""
|
||||
Updates the body of a pull request review.
|
||||
"""
|
||||
|
@ -44411,6 +44421,41 @@ type UpdateProjectPayload {
|
|||
project: Project
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdatePullRequestBranch
|
||||
"""
|
||||
input UpdatePullRequestBranchInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The head ref oid for the upstream branch.
|
||||
"""
|
||||
expectedHeadOid: GitObjectID
|
||||
|
||||
"""
|
||||
The Node ID of the pull request.
|
||||
"""
|
||||
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UpdatePullRequestBranch
|
||||
"""
|
||||
type UpdatePullRequestBranchPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The updated pull request.
|
||||
"""
|
||||
pullRequest: PullRequest
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdatePullRequest
|
||||
"""
|
||||
|
|
|
@ -1,4 +1,19 @@
|
|||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"Type `UpdatePullRequestBranchInput` was added",
|
||||
"Type `UpdatePullRequestBranchPayload` was added",
|
||||
"Field `updatePullRequestBranch` was added to object type `Mutation`"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [],
|
||||
"date": "2021-11-10"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -6593,6 +6593,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updatePullRequestBranch",
|
||||
"kind": "mutations",
|
||||
"id": "updatepullrequestbranch",
|
||||
"href": "/graphql/reference/mutations#updatepullrequestbranch",
|
||||
"description": "<p>Merge HEAD from upstream branch into pull request branch.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "UpdatePullRequestBranchInput!",
|
||||
"id": "updatepullrequestbranchinput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput"
|
||||
}
|
||||
],
|
||||
"returnFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>"
|
||||
},
|
||||
{
|
||||
"name": "pullRequest",
|
||||
"type": "PullRequest",
|
||||
"id": "pullrequest",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pullrequest",
|
||||
"description": "<p>The updated pull request.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updatePullRequestReview",
|
||||
"kind": "mutations",
|
||||
|
@ -79834,6 +79868,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdatePullRequestBranchInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "updatepullrequestbranchinput",
|
||||
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput",
|
||||
"description": "<p>Autogenerated input type of UpdatePullRequestBranch.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "expectedHeadOid",
|
||||
"description": "<p>The head ref oid for the upstream branch.</p>",
|
||||
"type": "GitObjectID",
|
||||
"id": "gitobjectid",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#gitobjectid"
|
||||
},
|
||||
{
|
||||
"name": "pullRequestId",
|
||||
"description": "<p>The Node ID of the pull request.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdatePullRequestInput",
|
||||
"kind": "inputObjects",
|
||||
|
|
|
@ -5460,6 +5460,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updatePullRequestBranch",
|
||||
"kind": "mutations",
|
||||
"id": "updatepullrequestbranch",
|
||||
"href": "/graphql/reference/mutations#updatepullrequestbranch",
|
||||
"description": "<p>Merge HEAD from upstream branch into pull request branch.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "UpdatePullRequestBranchInput!",
|
||||
"id": "updatepullrequestbranchinput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput"
|
||||
}
|
||||
],
|
||||
"returnFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>"
|
||||
},
|
||||
{
|
||||
"name": "pullRequest",
|
||||
"type": "PullRequest",
|
||||
"id": "pullrequest",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pullrequest",
|
||||
"description": "<p>The updated pull request.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updatePullRequestReview",
|
||||
"kind": "mutations",
|
||||
|
@ -70290,6 +70324,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdatePullRequestBranchInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "updatepullrequestbranchinput",
|
||||
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput",
|
||||
"description": "<p>Autogenerated input type of UpdatePullRequestBranch.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "expectedHeadOid",
|
||||
"description": "<p>The head ref oid for the upstream branch.</p>",
|
||||
"type": "GitObjectID",
|
||||
"id": "gitobjectid",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#gitobjectid"
|
||||
},
|
||||
{
|
||||
"name": "pullRequestId",
|
||||
"description": "<p>The Node ID of the pull request.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdatePullRequestInput",
|
||||
"kind": "inputObjects",
|
||||
|
|
|
@ -6593,6 +6593,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updatePullRequestBranch",
|
||||
"kind": "mutations",
|
||||
"id": "updatepullrequestbranch",
|
||||
"href": "/graphql/reference/mutations#updatepullrequestbranch",
|
||||
"description": "<p>Merge HEAD from upstream branch into pull request branch.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "UpdatePullRequestBranchInput!",
|
||||
"id": "updatepullrequestbranchinput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput"
|
||||
}
|
||||
],
|
||||
"returnFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>"
|
||||
},
|
||||
{
|
||||
"name": "pullRequest",
|
||||
"type": "PullRequest",
|
||||
"id": "pullrequest",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pullrequest",
|
||||
"description": "<p>The updated pull request.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updatePullRequestReview",
|
||||
"kind": "mutations",
|
||||
|
@ -79834,6 +79868,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdatePullRequestBranchInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "updatepullrequestbranchinput",
|
||||
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput",
|
||||
"description": "<p>Autogenerated input type of UpdatePullRequestBranch.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "expectedHeadOid",
|
||||
"description": "<p>The head ref oid for the upstream branch.</p>",
|
||||
"type": "GitObjectID",
|
||||
"id": "gitobjectid",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#gitobjectid"
|
||||
},
|
||||
{
|
||||
"name": "pullRequestId",
|
||||
"description": "<p>The Node ID of the pull request.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdatePullRequestInput",
|
||||
"kind": "inputObjects",
|
||||
|
|
Загрузка…
Ссылка в новой задаче