Skip to content

Repo sync #39589

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 30, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
GraphQL schema update (#56910)
Co-authored-by: heiskr <1221423+heiskr@users.noreply.github.com>
  • Loading branch information
docs-bot and heiskr authored Jul 30, 2025
commit 8093e4c38dd34aef43e71923d0c752faac73e360
26 changes: 26 additions & 0 deletions src/graphql/data/fpt/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Type <code>AddBlockedByInput</code> was added</p>",
"<p>Type <code>AddBlockedByPayload</code> was added</p>",
"<p>Type <code>IssueDependenciesSummary</code> was added</p>",
"<p>Type <code>IssueDependencyOrder</code> was added</p>",
"<p>Type <code>IssueDependencyOrderField</code> was added</p>",
"<p>Type <code>RemoveBlockedByInput</code> was added</p>",
"<p>Type <code>RemoveBlockedByPayload</code> was added</p>",
"<p>Field <code>blockedBy</code> was added to object type <code>Issue</code></p>",
"<p>Field <code>blocking</code> was added to object type <code>Issue</code></p>",
"<p>Field <code>issueDependenciesSummary</code> was added to object type <code>Issue</code></p>",
"<p>Enum value 'BLOCKED_BY_ADDED_EVENT<code>was added to enum</code>IssueTimelineItemsItemType'</p>",
"<p>Field <code>addBlockedBy</code> was added to object type <code>Mutation</code></p>",
"<p>Field <code>removeBlockedBy</code> was added to object type <code>Mutation</code></p>",
"<p>Enum value 'BLOCKED_BY_ADDED_EVENT<code>was added to enum</code>PullRequestTimelineItemsItemType'</p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2025-07-30"
},
{
"schemaChanges": [
{
Expand Down
220 changes: 220 additions & 0 deletions src/graphql/data/fpt/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,46 @@ type AddAssigneesToAssignablePayload {
clientMutationId: String
}

"""
Autogenerated input type of AddBlockedBy
"""
input AddBlockedByInput {
"""
The ID of the issue that blocks the given issue.
"""
blockingIssueId: ID! @possibleTypes(concreteTypes: ["Issue"])

"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The ID of the issue to be blocked.
"""
issueId: ID! @possibleTypes(concreteTypes: ["Issue"])
}

"""
Autogenerated return type of AddBlockedBy.
"""
type AddBlockedByPayload {
"""
The issue that is blocking the given issue.
"""
blockingIssue: Issue

"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The issue that is blocked.
"""
issue: Issue
}

"""
Autogenerated input type of AddComment
"""
Expand Down Expand Up @@ -18613,6 +18653,66 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
"""
authorAssociation: CommentAuthorAssociation!

"""
A list of issues that are blocking this issue.
"""
blockedBy(
"""
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

"""
Ordering options for dependencies
"""
orderBy: IssueDependencyOrder = {field: DEPENDENCY_ADDED_AT, direction: DESC}
): IssueConnection!

"""
A list of issues that this issue is blocking.
"""
blocking(
"""
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

"""
Ordering options for dependencies
"""
orderBy: IssueDependencyOrder = {field: DEPENDENCY_ADDED_AT, direction: DESC}
): IssueConnection!

"""
Identifies the body of the issue.
"""
Expand Down Expand Up @@ -18778,6 +18878,11 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
"""
isReadByViewer: Boolean

"""
Summary of the state of an issue's dependencies
"""
issueDependenciesSummary: IssueDependenciesSummary!

"""
The issue type for this Issue
"""
Expand Down Expand Up @@ -19735,6 +19840,51 @@ type IssueContributionsByRepository {
repository: Repository!
}

"""
Summary of the state of an issue's dependencies
"""
type IssueDependenciesSummary {
"""
Count of issues this issue is blocked by
"""
blockedBy: Int!

"""
Count of issues this issue is blocking
"""
blocking: Int!
}

"""
Ordering options issue dependencies
"""
input IssueDependencyOrder {
"""
The ordering direction.
"""
direction: OrderDirection!

"""
The field to order issue dependencies by.
"""
field: IssueDependencyOrderField!
}

"""
Properties by which issue dependencies can be ordered.
"""
enum IssueDependencyOrderField {
"""
Order issue dependencies by the creation time of the dependent issue
"""
CREATED_AT

"""
Order issue dependencies by time of when the dependency relationship was added
"""
DEPENDENCY_ADDED_AT
}

"""
An edge in a connection.
"""
Expand Down Expand Up @@ -20156,6 +20306,11 @@ enum IssueTimelineItemsItemType {
"""
ASSIGNED_EVENT

"""
Represents a 'blocked_by_added' event on a given issue.
"""
BLOCKED_BY_ADDED_EVENT

"""
Represents a 'closed' event on any `Closable`.
"""
Expand Down Expand Up @@ -24099,6 +24254,16 @@ type Mutation {
input: AddAssigneesToAssignableInput!
): AddAssigneesToAssignablePayload

"""
Adds a 'blocked by' relationship to an issue.
"""
addBlockedBy(
"""
Parameters for AddBlockedBy
"""
input: AddBlockedByInput!
): AddBlockedByPayload

"""
Adds a comment to an Issue or Pull Request.
"""
Expand Down Expand Up @@ -25494,6 +25659,16 @@ type Mutation {
input: RemoveAssigneesFromAssignableInput!
): RemoveAssigneesFromAssignablePayload

"""
Removes a 'blocked by' relationship from an issue.
"""
removeBlockedBy(
"""
Parameters for RemoveBlockedBy
"""
input: RemoveBlockedByInput!
): RemoveBlockedByPayload

"""
Removes an administrator from the enterprise.
"""
Expand Down Expand Up @@ -42780,6 +42955,11 @@ enum PullRequestTimelineItemsItemType {
"""
BASE_REF_FORCE_PUSHED_EVENT

"""
Represents a 'blocked_by_added' event on a given issue.
"""
BLOCKED_BY_ADDED_EVENT

"""
Represents a 'closed' event on any `Closable`.
"""
Expand Down Expand Up @@ -45070,6 +45250,46 @@ type RemoveAssigneesFromAssignablePayload {
clientMutationId: String
}

"""
Autogenerated input type of RemoveBlockedBy
"""
input RemoveBlockedByInput {
"""
The ID of the blocking issue.
"""
blockingIssueId: ID! @possibleTypes(concreteTypes: ["Issue"])

"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The ID of the blocked issue.
"""
issueId: ID! @possibleTypes(concreteTypes: ["Issue"])
}

"""
Autogenerated return type of RemoveBlockedBy.
"""
type RemoveBlockedByPayload {
"""
The previously blocking issue.
"""
blockingIssue: Issue

"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The previously blocked issue.
"""
issue: Issue
}

"""
Autogenerated input type of RemoveEnterpriseAdmin
"""
Expand Down
Loading