OBJECT
Mutation
The root query for implementing GraphQL mutations.
link GraphQL Schema definition
- type Mutation {
- # Adds a comment to an Issue or Pull Request.
- #
- # Arguments
- # input: [Not documented]
- (: AddCommentInput!): AddCommentPayload
- # Adds a card to a ProjectColumn. Either `contentId` or `note` must be provided
- # but **not** both.
- #
- # Arguments
- # input: [Not documented]
- (: AddProjectCardInput!): AddProjectCardPayload
- # Adds a column to a Project.
- #
- # Arguments
- # input: [Not documented]
- (: AddProjectColumnInput!): AddProjectColumnPayload
- # Adds a review to a Pull Request.
- #
- # Arguments
- # input: [Not documented]
- (: AddPullRequestReviewInput!): AddPullRequestReviewPayload
- # Adds a comment to a review.
- #
- # Arguments
- # input: [Not documented]
- (
- : AddPullRequestReviewCommentInput!
- ): AddPullRequestReviewCommentPayload
- # Adds a reaction to a subject.
- #
- # Arguments
- # input: [Not documented]
- (: AddReactionInput!): AddReactionPayload
- # Creates a new project.
- #
- # Arguments
- # input: [Not documented]
- (: CreateProjectInput!): CreateProjectPayload
- # Deletes a project.
- #
- # Arguments
- # input: [Not documented]
- (: DeleteProjectInput!): DeleteProjectPayload
- # Deletes a project card.
- #
- # Arguments
- # input: [Not documented]
- (: DeleteProjectCardInput!): DeleteProjectCardPayload
- # Deletes a project column.
- #
- # Arguments
- # input: [Not documented]
- (: DeleteProjectColumnInput!): DeleteProjectColumnPayload
- # Deletes a pull request review.
- #
- # Arguments
- # input: [Not documented]
- (
- : DeletePullRequestReviewInput!
- ): DeletePullRequestReviewPayload
- # Dismisses an approved or rejected pull request review.
- #
- # Arguments
- # input: [Not documented]
- (
- : DismissPullRequestReviewInput!
- ): DismissPullRequestReviewPayload
- # Moves a project card to another place.
- #
- # Arguments
- # input: [Not documented]
- (: MoveProjectCardInput!): MoveProjectCardPayload
- # Moves a project column to another place.
- #
- # Arguments
- # input: [Not documented]
- (: MoveProjectColumnInput!): MoveProjectColumnPayload
- # Removes outside collaborator from all repositories in an organization.
- #
- # Arguments
- # input: [Not documented]
- (
- : RemoveOutsideCollaboratorInput!
- ): RemoveOutsideCollaboratorPayload
- # Removes a reaction from a subject.
- #
- # Arguments
- # input: [Not documented]
- (: RemoveReactionInput!): RemoveReactionPayload
- # Set review requests on a pull request.
- #
- # Arguments
- # input: [Not documented]
- (: RequestReviewsInput!): RequestReviewsPayload
- # Submits a pending pull request review.
- #
- # Arguments
- # input: [Not documented]
- (
- : SubmitPullRequestReviewInput!
- ): SubmitPullRequestReviewPayload
- # Updates an existing project.
- #
- # Arguments
- # input: [Not documented]
- (: UpdateProjectInput!): UpdateProjectPayload
- # Updates an existing project card.
- #
- # Arguments
- # input: [Not documented]
- (: UpdateProjectCardInput!): UpdateProjectCardPayload
- # Updates an existing project column.
- #
- # Arguments
- # input: [Not documented]
- (: UpdateProjectColumnInput!): UpdateProjectColumnPayload
- # Updates the body of a pull request review.
- #
- # Arguments
- # input: [Not documented]
- (
- : UpdatePullRequestReviewInput!
- ): UpdatePullRequestReviewPayload
- # Updates a pull request review comment.
- #
- # Arguments
- # input: [Not documented]
- (
- : UpdatePullRequestReviewCommentInput!
- ): UpdatePullRequestReviewCommentPayload
- # Updates viewers repository subscription state.
- #
- # Arguments
- # input: [Not documented]
- (: UpdateSubscriptionInput!): UpdateSubscriptionPayload
- }
link Require by
This element is not required by anyone