Skip to content

Commit

Permalink
feat: unlockLockable mutation (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
octokitbot authored and gr2m committed Jun 15, 2018
1 parent 15bc35f commit 9b43d6c
Show file tree
Hide file tree
Showing 2 changed files with 271 additions and 153 deletions.
21 changes: 21 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3297,6 +3297,9 @@ type Mutation {
# Submits a pending pull request review.
submitPullRequestReview(input: SubmitPullRequestReviewInput!): SubmitPullRequestReviewPayload

# Unlock a lockable object
unlockLockable(input: UnlockLockableInput!): UnlockLockablePayload

# Updates an existing project.
updateProject(input: UpdateProjectInput!): UpdateProjectPayload

Expand Down Expand Up @@ -7763,6 +7766,24 @@ type UnlabeledEvent implements Node {
labelable: Labelable!
}

# Autogenerated input type of UnlockLockable
input UnlockLockableInput {
# A unique identifier for the client performing the mutation.
clientMutationId: String

# ID of the issue or pull request to be unlocked.
lockableId: ID!
}

# Autogenerated return type of UnlockLockable
type UnlockLockablePayload {
# A unique identifier for the client performing the mutation.
clientMutationId: String

# The item that was unlocked.
unlockedRecord: Lockable
}

# Represents an 'unlocked' event on a given issue or pull request.
type UnlockedEvent implements Node {
# Identifies the actor who performed the event.
Expand Down
Loading

0 comments on commit 9b43d6c

Please sign in to comment.