1
0
mirror of synced 2025-12-31 15:04:15 -05:00

Merge pull request #19369 from github/repo-sync

repo sync
This commit is contained in:
Octomerger Bot
2022-07-28 13:06:59 -04:00
committed by GitHub
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.
"""

View File

@@ -1,4 +1,17 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `PullRequestThread` was added"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2022-07-28"
},
{
"schemaChanges": [
{

File diff suppressed because one or more lines are too long

View File

@@ -48081,6 +48081,154 @@
}
]
},
{
"name": "PullRequestThread",
"kind": "objects",
"id": "pullrequestthread",
"href": "/graphql/reference/objects#pullrequestthread",
"description": "<p>A threaded list of comments for a given pull request.</p>",
"implements": [
{
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
}
],
"fields": [
{
"name": "comments",
"description": "<p>A list of pull request comments associated with the thread.</p>",
"type": "PullRequestReviewCommentConnection!",
"id": "pullrequestreviewcommentconnection",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequestreviewcommentconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "skip",
"description": "<p>Skips the first <em>n</em> elements in the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "isCollapsed",
"description": "<p>Whether or not the thread has been collapsed (resolved).</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isOutdated",
"description": "<p>Indicates whether this thread was outdated by newer changes.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isResolved",
"description": "<p>Whether this thread has been resolved.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "pullRequest",
"description": "<p>Identifies the pull request associated with this thread.</p>",
"type": "PullRequest!",
"id": "pullrequest",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequest"
},
{
"name": "repository",
"description": "<p>Identifies the repository associated with this thread.</p>",
"type": "Repository!",
"id": "repository",
"kind": "objects",
"href": "/graphql/reference/objects#repository"
},
{
"name": "resolvedBy",
"description": "<p>The user who resolved this thread.</p>",
"type": "User",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user"
},
{
"name": "viewerCanReply",
"description": "<p>Indicates whether the current viewer can reply to this thread.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "viewerCanResolve",
"description": "<p>Whether or not the viewer can resolve this thread.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "viewerCanUnresolve",
"description": "<p>Whether or not the viewer can unresolve this thread.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
]
},
{
"name": "PullRequestTimelineConnection",
"kind": "objects",

View File

@@ -38461,6 +38461,154 @@
}
]
},
{
"name": "PullRequestThread",
"kind": "objects",
"id": "pullrequestthread",
"href": "/graphql/reference/objects#pullrequestthread",
"description": "<p>A threaded list of comments for a given pull request.</p>",
"implements": [
{
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
}
],
"fields": [
{
"name": "comments",
"description": "<p>A list of pull request comments associated with the thread.</p>",
"type": "PullRequestReviewCommentConnection!",
"id": "pullrequestreviewcommentconnection",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequestreviewcommentconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "skip",
"description": "<p>Skips the first <em>n</em> elements in the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "isCollapsed",
"description": "<p>Whether or not the thread has been collapsed (resolved).</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isOutdated",
"description": "<p>Indicates whether this thread was outdated by newer changes.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isResolved",
"description": "<p>Whether this thread has been resolved.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "pullRequest",
"description": "<p>Identifies the pull request associated with this thread.</p>",
"type": "PullRequest!",
"id": "pullrequest",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequest"
},
{
"name": "repository",
"description": "<p>Identifies the repository associated with this thread.</p>",
"type": "Repository!",
"id": "repository",
"kind": "objects",
"href": "/graphql/reference/objects#repository"
},
{
"name": "resolvedBy",
"description": "<p>The user who resolved this thread.</p>",
"type": "User",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user"
},
{
"name": "viewerCanReply",
"description": "<p>Indicates whether the current viewer can reply to this thread.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "viewerCanResolve",
"description": "<p>Whether or not the viewer can resolve this thread.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "viewerCanUnresolve",
"description": "<p>Whether or not the viewer can unresolve this thread.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
]
},
{
"name": "PullRequestTimelineConnection",
"kind": "objects",

View File

@@ -48081,6 +48081,154 @@
}
]
},
{
"name": "PullRequestThread",
"kind": "objects",
"id": "pullrequestthread",
"href": "/graphql/reference/objects#pullrequestthread",
"description": "<p>A threaded list of comments for a given pull request.</p>",
"implements": [
{
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
}
],
"fields": [
{
"name": "comments",
"description": "<p>A list of pull request comments associated with the thread.</p>",
"type": "PullRequestReviewCommentConnection!",
"id": "pullrequestreviewcommentconnection",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequestreviewcommentconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "skip",
"description": "<p>Skips the first <em>n</em> elements in the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "isCollapsed",
"description": "<p>Whether or not the thread has been collapsed (resolved).</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isOutdated",
"description": "<p>Indicates whether this thread was outdated by newer changes.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isResolved",
"description": "<p>Whether this thread has been resolved.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "pullRequest",
"description": "<p>Identifies the pull request associated with this thread.</p>",
"type": "PullRequest!",
"id": "pullrequest",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequest"
},
{
"name": "repository",
"description": "<p>Identifies the repository associated with this thread.</p>",
"type": "Repository!",
"id": "repository",
"kind": "objects",
"href": "/graphql/reference/objects#repository"
},
{
"name": "resolvedBy",
"description": "<p>The user who resolved this thread.</p>",
"type": "User",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user"
},
{
"name": "viewerCanReply",
"description": "<p>Indicates whether the current viewer can reply to this thread.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "viewerCanResolve",
"description": "<p>Whether or not the viewer can resolve this thread.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "viewerCanUnresolve",
"description": "<p>Whether or not the viewer can unresolve this thread.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
]
},
{
"name": "PullRequestTimelineConnection",
"kind": "objects",