1
0
mirror of synced 2025-12-30 12:02:01 -05:00

Action ran graphql script"update-files"

This commit is contained in:
rachmari
2022-07-28 16:36:56 +00:00
committed by GitHub
parent 238d02f82c
commit 1cdeeb1748
8 changed files with 721 additions and 3 deletions

View File

@@ -26788,6 +26788,87 @@ type PullRequestTemplate {
repository: Repository!
}
"""
A threaded list of comments for a given pull request.
"""
type PullRequestThread implements Node {
"""
A list of pull request comments associated with the thread.
"""
comments(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Skips the first _n_ elements in the list.
"""
skip: Int
): PullRequestReviewCommentConnection!
id: ID!
"""
Whether or not the thread has been collapsed (resolved)
"""
isCollapsed: Boolean!
"""
Indicates whether this thread was outdated by newer changes.
"""
isOutdated: Boolean!
"""
Whether this thread has been resolved
"""
isResolved: Boolean!
"""
Identifies the pull request associated with this thread.
"""
pullRequest: PullRequest!
"""
Identifies the repository associated with this thread.
"""
repository: Repository!
"""
The user who resolved this thread
"""
resolvedBy: User
"""
Indicates whether the current viewer can reply to this thread.
"""
viewerCanReply: Boolean!
"""
Whether or not the viewer can resolve this thread
"""
viewerCanResolve: Boolean!
"""
Whether or not the viewer can unresolve this thread
"""
viewerCanUnresolve: Boolean!
}
"""
The connection type for PullRequestTimelineItem.
"""

View File

@@ -33619,6 +33619,87 @@ type PullRequestTemplate {
repository: Repository!
}
"""
A threaded list of comments for a given pull request.
"""
type PullRequestThread implements Node {
"""
A list of pull request comments associated with the thread.
"""
comments(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Skips the first _n_ elements in the list.
"""
skip: Int
): PullRequestReviewCommentConnection!
id: ID!
"""
Whether or not the thread has been collapsed (resolved)
"""
isCollapsed: Boolean!
"""
Indicates whether this thread was outdated by newer changes.
"""
isOutdated: Boolean!
"""
Whether this thread has been resolved
"""
isResolved: Boolean!
"""
Identifies the pull request associated with this thread.
"""
pullRequest: PullRequest!
"""
Identifies the repository associated with this thread.
"""
repository: Repository!
"""
The user who resolved this thread
"""
resolvedBy: User
"""
Indicates whether the current viewer can reply to this thread.
"""
viewerCanReply: Boolean!
"""
Whether or not the viewer can resolve this thread
"""
viewerCanResolve: Boolean!
"""
Whether or not the viewer can unresolve this thread
"""
viewerCanUnresolve: Boolean!
}
"""
The connection type for PullRequestTimelineItem.
"""

View File

@@ -33619,6 +33619,87 @@ type PullRequestTemplate {
repository: Repository!
}
"""
A threaded list of comments for a given pull request.
"""
type PullRequestThread implements Node {
"""
A list of pull request comments associated with the thread.
"""
comments(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Skips the first _n_ elements in the list.
"""
skip: Int
): PullRequestReviewCommentConnection!
id: ID!
"""
Whether or not the thread has been collapsed (resolved)
"""
isCollapsed: Boolean!
"""
Indicates whether this thread was outdated by newer changes.
"""
isOutdated: Boolean!
"""
Whether this thread has been resolved
"""
isResolved: Boolean!
"""
Identifies the pull request associated with this thread.
"""
pullRequest: PullRequest!
"""
Identifies the repository associated with this thread.
"""
repository: Repository!
"""
The user who resolved this thread
"""
resolvedBy: User
"""
Indicates whether the current viewer can reply to this thread.
"""
viewerCanReply: Boolean!
"""
Whether or not the viewer can resolve this thread
"""
viewerCanResolve: Boolean!
"""
Whether or not the viewer can unresolve this thread
"""
viewerCanUnresolve: Boolean!
}
"""
The connection type for PullRequestTimelineItem.
"""