Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -641,9 +641,10 @@ input AddPullRequestReviewThreadInput {
clientMutationId: String

"""
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
The line of the blob to which the thread refers, required for line-level
threads. The end of the line range for multi-line comments.
"""
line: Int!
line: Int

"""
Path to the file being commented on.
Expand Down
5 changes: 3 additions & 2 deletions data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -808,9 +808,10 @@ input AddPullRequestReviewThreadInput {
clientMutationId: String

"""
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
The line of the blob to which the thread refers, required for line-level
threads. The end of the line range for multi-line comments.
"""
line: Int!
line: Int

"""
Path to the file being commented on.
Expand Down
5 changes: 3 additions & 2 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -808,9 +808,10 @@ input AddPullRequestReviewThreadInput {
clientMutationId: String

"""
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
The line of the blob to which the thread refers, required for line-level
threads. The end of the line range for multi-line comments.
"""
line: Int!
line: Int

"""
Path to the file being commented on.
Expand Down
13 changes: 13 additions & 0 deletions src/graphql/data/dotcom/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Input field <code>AddPullRequestReviewThreadInput.line</code> changed type from <code>Int!</code> to <code>Int</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2023-04-04"
},
{
"schemaChanges": [
{
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/data/dotcom/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -83846,8 +83846,8 @@
},
{
"name": "line",
"description": "<p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>",
"type": "Int!",
"description": "<p>The line of the blob to which the thread refers, required for line-level\nthreads. The end of the line range for multi-line comments.</p>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/data/ghae/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -68934,8 +68934,8 @@
},
{
"name": "line",
"description": "<p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>",
"type": "Int!",
"description": "<p>The line of the blob to which the thread refers, required for line-level\nthreads. The end of the line range for multi-line comments.</p>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -83846,8 +83846,8 @@
},
{
"name": "line",
"description": "<p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>",
"type": "Int!",
"description": "<p>The line of the blob to which the thread refers, required for line-level\nthreads. The end of the line range for multi-line comments.</p>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
Expand Down