1
0
mirror of synced 2025-12-23 21:07:12 -05:00

Action ran graphql script"update-files"

This commit is contained in:
rachmari
2021-04-20 16:38:33 +00:00
committed by GitHub
parent 3b31118e11
commit 0c383063fb
6 changed files with 227 additions and 2 deletions

View File

@@ -4723,6 +4723,36 @@ type ConvertProjectCardNoteToIssuePayload {
projectCard: ProjectCard
}
"""
Autogenerated input type of ConvertPullRequestToDraft
"""
input ConvertPullRequestToDraftInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
ID of the pull request to convert to draft
"""
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
}
"""
Autogenerated return type of ConvertPullRequestToDraft
"""
type ConvertPullRequestToDraftPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The pull request that is now a draft.
"""
pullRequest: PullRequest
}
"""
Represents a 'convert_to_draft' event on a given pull request.
"""
@@ -14566,6 +14596,16 @@ type Mutation {
input: ConvertProjectCardNoteToIssueInput!
): ConvertProjectCardNoteToIssuePayload
"""
Converts a pull request to draft
"""
convertPullRequestToDraft(
"""
Parameters for ConvertPullRequestToDraft
"""
input: ConvertPullRequestToDraftInput!
): ConvertPullRequestToDraftPayload
"""
Create a new branch protection rule
"""

View File

@@ -4813,6 +4813,36 @@ type ConvertProjectCardNoteToIssuePayload {
projectCard: ProjectCard
}
"""
Autogenerated input type of ConvertPullRequestToDraft
"""
input ConvertPullRequestToDraftInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
ID of the pull request to convert to draft
"""
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
}
"""
Autogenerated return type of ConvertPullRequestToDraft
"""
type ConvertPullRequestToDraftPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The pull request that is now a draft.
"""
pullRequest: PullRequest
}
"""
Represents a 'convert_to_draft' event on a given pull request.
"""
@@ -15591,6 +15621,16 @@ type Mutation {
input: ConvertProjectCardNoteToIssueInput!
): ConvertProjectCardNoteToIssuePayload
"""
Converts a pull request to draft
"""
convertPullRequestToDraft(
"""
Parameters for ConvertPullRequestToDraft
"""
input: ConvertPullRequestToDraftInput!
): ConvertPullRequestToDraftPayload
"""
Create a new branch protection rule
"""