Skip to content

Commit

Permalink
feat: PullRequests#maintainerCanModify, #mergedBy. UserContentEdit#de…
Browse files Browse the repository at this point in the history
  • Loading branch information
octokitbot authored and gr2m committed Apr 11, 2018
1 parent 9ce3b99 commit 279c7ce
Show file tree
Hide file tree
Showing 2 changed files with 5,044 additions and 4,965 deletions.
17 changes: 16 additions & 1 deletion schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -4247,6 +4247,9 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
# `true` if the pull request is locked
locked: Boolean!

# Indicates whether maintainers can modify the pull request.
maintainerCanModify: Boolean!

# The commit that was created when this pull request was merged.
mergeCommit: Commit

Expand All @@ -4259,6 +4262,9 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
# The date and time that the pull request was merged.
mergedAt: DateTime

# The actor who merged the pull request.
mergedBy: Actor

# Identifies the milestone associated with the pull request.
milestone: Milestone

Expand Down Expand Up @@ -8332,7 +8338,16 @@ type UserContentEdit implements Node {
# Identifies the date and time when the object was created.
createdAt: DateTime!

# The actor who edited this content,
# Identifies the date and time when the object was deleted.
deletedAt: DateTime

# The actor who deleted this content
deletedBy: Actor

# A summary of the changes for this edit
diff: String

# The actor who edited this content
editor: Actor
id: ID!

Expand Down
Loading

0 comments on commit 279c7ce

Please sign in to comment.