GraphQL schema update (#38708)
Co-authored-by: rachmari <rachmari@users.noreply.github.com>
This commit is contained in:
@@ -7675,14 +7675,9 @@ Autogenerated input type of CreateRepositoryRuleset
|
||||
"""
|
||||
input CreateRepositoryRulesetInput {
|
||||
"""
|
||||
A list of Team or App IDs allowed to bypass rules in this ruleset.
|
||||
A list of actors that are allowed to bypass rules in this ruleset.
|
||||
"""
|
||||
bypassActorIds: [ID!]
|
||||
|
||||
"""
|
||||
The bypass mode for this ruleset
|
||||
"""
|
||||
bypassMode: RuleBypassMode
|
||||
bypassActors: [RepositoryRulesetBypassActorInput!]
|
||||
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
@@ -8020,9 +8015,15 @@ Autogenerated input type of CreateTeamDiscussionComment
|
||||
"""
|
||||
input CreateTeamDiscussionCommentInput {
|
||||
"""
|
||||
The content of the comment.
|
||||
The content of the comment. This field is required.
|
||||
|
||||
**Upcoming Change on 2024-07-01 UTC**
|
||||
**Description:** `body` will be removed. Follow the guide at
|
||||
https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
|
||||
find a suitable replacement.
|
||||
**Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
|
||||
"""
|
||||
body: String!
|
||||
body: String
|
||||
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
@@ -8030,9 +8031,15 @@ input CreateTeamDiscussionCommentInput {
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The ID of the discussion to which the comment belongs.
|
||||
The ID of the discussion to which the comment belongs. This field is required.
|
||||
|
||||
**Upcoming Change on 2024-07-01 UTC**
|
||||
**Description:** `discussionId` will be removed. Follow the guide at
|
||||
https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
|
||||
find a suitable replacement.
|
||||
**Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
|
||||
"""
|
||||
discussionId: ID! @possibleTypes(concreteTypes: ["TeamDiscussion"])
|
||||
discussionId: ID @possibleTypes(concreteTypes: ["TeamDiscussion"])
|
||||
}
|
||||
|
||||
"""
|
||||
@@ -8048,6 +8055,9 @@ type CreateTeamDiscussionCommentPayload {
|
||||
The new comment.
|
||||
"""
|
||||
teamDiscussionComment: TeamDiscussionComment
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
}
|
||||
|
||||
"""
|
||||
@@ -8055,9 +8065,15 @@ Autogenerated input type of CreateTeamDiscussion
|
||||
"""
|
||||
input CreateTeamDiscussionInput {
|
||||
"""
|
||||
The content of the discussion.
|
||||
The content of the discussion. This field is required.
|
||||
|
||||
**Upcoming Change on 2024-07-01 UTC**
|
||||
**Description:** `body` will be removed. Follow the guide at
|
||||
https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
|
||||
find a suitable replacement.
|
||||
**Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
|
||||
"""
|
||||
body: String!
|
||||
body: String
|
||||
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
@@ -8068,18 +8084,36 @@ input CreateTeamDiscussionInput {
|
||||
If true, restricts the visibility of this discussion to team members and
|
||||
organization admins. If false or not specified, allows any organization member
|
||||
to view this discussion.
|
||||
|
||||
**Upcoming Change on 2024-07-01 UTC**
|
||||
**Description:** `private` will be removed. Follow the guide at
|
||||
https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
|
||||
find a suitable replacement.
|
||||
**Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
|
||||
"""
|
||||
private: Boolean
|
||||
|
||||
"""
|
||||
The ID of the team to which the discussion belongs.
|
||||
The ID of the team to which the discussion belongs. This field is required.
|
||||
|
||||
**Upcoming Change on 2024-07-01 UTC**
|
||||
**Description:** `teamId` will be removed. Follow the guide at
|
||||
https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
|
||||
find a suitable replacement.
|
||||
**Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
|
||||
"""
|
||||
teamId: ID! @possibleTypes(concreteTypes: ["Team"])
|
||||
teamId: ID @possibleTypes(concreteTypes: ["Team"])
|
||||
|
||||
"""
|
||||
The title of the discussion.
|
||||
The title of the discussion. This field is required.
|
||||
|
||||
**Upcoming Change on 2024-07-01 UTC**
|
||||
**Description:** `title` will be removed. Follow the guide at
|
||||
https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
|
||||
find a suitable replacement.
|
||||
**Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
|
||||
"""
|
||||
title: String!
|
||||
title: String
|
||||
}
|
||||
|
||||
"""
|
||||
@@ -8095,6 +8129,9 @@ type CreateTeamDiscussionPayload {
|
||||
The new discussion.
|
||||
"""
|
||||
teamDiscussion: TeamDiscussion
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
}
|
||||
|
||||
"""
|
||||
@@ -25370,6 +25407,112 @@ type OrgOauthAppAccessApprovedAuditEntry implements AuditEntry & Node & OauthApp
|
||||
userUrl: URI
|
||||
}
|
||||
|
||||
"""
|
||||
Audit log entry for a org.oauth_app_access_blocked event.
|
||||
"""
|
||||
type OrgOauthAppAccessBlockedAuditEntry implements AuditEntry & Node & OauthApplicationAuditEntryData & OrganizationAuditEntryData {
|
||||
"""
|
||||
The action name
|
||||
"""
|
||||
action: String!
|
||||
|
||||
"""
|
||||
The user who initiated the action
|
||||
"""
|
||||
actor: AuditEntryActor
|
||||
|
||||
"""
|
||||
The IP address of the actor
|
||||
"""
|
||||
actorIp: String
|
||||
|
||||
"""
|
||||
A readable representation of the actor's location
|
||||
"""
|
||||
actorLocation: ActorLocation
|
||||
|
||||
"""
|
||||
The username of the user who initiated the action
|
||||
"""
|
||||
actorLogin: String
|
||||
|
||||
"""
|
||||
The HTTP path for the actor.
|
||||
"""
|
||||
actorResourcePath: URI
|
||||
|
||||
"""
|
||||
The HTTP URL for the actor.
|
||||
"""
|
||||
actorUrl: URI
|
||||
|
||||
"""
|
||||
The time the action was initiated
|
||||
"""
|
||||
createdAt: PreciseDateTime!
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
The name of the OAuth application.
|
||||
"""
|
||||
oauthApplicationName: String
|
||||
|
||||
"""
|
||||
The HTTP path for the OAuth application
|
||||
"""
|
||||
oauthApplicationResourcePath: URI
|
||||
|
||||
"""
|
||||
The HTTP URL for the OAuth application
|
||||
"""
|
||||
oauthApplicationUrl: URI
|
||||
|
||||
"""
|
||||
The corresponding operation type for the action
|
||||
"""
|
||||
operationType: OperationType
|
||||
|
||||
"""
|
||||
The Organization associated with the Audit Entry.
|
||||
"""
|
||||
organization: Organization
|
||||
|
||||
"""
|
||||
The name of the Organization.
|
||||
"""
|
||||
organizationName: String
|
||||
|
||||
"""
|
||||
The HTTP path for the organization
|
||||
"""
|
||||
organizationResourcePath: URI
|
||||
|
||||
"""
|
||||
The HTTP URL for the organization
|
||||
"""
|
||||
organizationUrl: URI
|
||||
|
||||
"""
|
||||
The user affected by the action
|
||||
"""
|
||||
user: User
|
||||
|
||||
"""
|
||||
For actions involving two users, the actor is the initiator and the user is the affected user.
|
||||
"""
|
||||
userLogin: String
|
||||
|
||||
"""
|
||||
The HTTP path for the user.
|
||||
"""
|
||||
userResourcePath: URI
|
||||
|
||||
"""
|
||||
The HTTP URL for the user.
|
||||
"""
|
||||
userUrl: URI
|
||||
}
|
||||
|
||||
"""
|
||||
Audit log entry for a org.oauth_app_access_denied event.
|
||||
"""
|
||||
@@ -25582,6 +25725,112 @@ type OrgOauthAppAccessRequestedAuditEntry implements AuditEntry & Node & OauthAp
|
||||
userUrl: URI
|
||||
}
|
||||
|
||||
"""
|
||||
Audit log entry for a org.oauth_app_access_unblocked event.
|
||||
"""
|
||||
type OrgOauthAppAccessUnblockedAuditEntry implements AuditEntry & Node & OauthApplicationAuditEntryData & OrganizationAuditEntryData {
|
||||
"""
|
||||
The action name
|
||||
"""
|
||||
action: String!
|
||||
|
||||
"""
|
||||
The user who initiated the action
|
||||
"""
|
||||
actor: AuditEntryActor
|
||||
|
||||
"""
|
||||
The IP address of the actor
|
||||
"""
|
||||
actorIp: String
|
||||
|
||||
"""
|
||||
A readable representation of the actor's location
|
||||
"""
|
||||
actorLocation: ActorLocation
|
||||
|
||||
"""
|
||||
The username of the user who initiated the action
|
||||
"""
|
||||
actorLogin: String
|
||||
|
||||
"""
|
||||
The HTTP path for the actor.
|
||||
"""
|
||||
actorResourcePath: URI
|
||||
|
||||
"""
|
||||
The HTTP URL for the actor.
|
||||
"""
|
||||
actorUrl: URI
|
||||
|
||||
"""
|
||||
The time the action was initiated
|
||||
"""
|
||||
createdAt: PreciseDateTime!
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
The name of the OAuth application.
|
||||
"""
|
||||
oauthApplicationName: String
|
||||
|
||||
"""
|
||||
The HTTP path for the OAuth application
|
||||
"""
|
||||
oauthApplicationResourcePath: URI
|
||||
|
||||
"""
|
||||
The HTTP URL for the OAuth application
|
||||
"""
|
||||
oauthApplicationUrl: URI
|
||||
|
||||
"""
|
||||
The corresponding operation type for the action
|
||||
"""
|
||||
operationType: OperationType
|
||||
|
||||
"""
|
||||
The Organization associated with the Audit Entry.
|
||||
"""
|
||||
organization: Organization
|
||||
|
||||
"""
|
||||
The name of the Organization.
|
||||
"""
|
||||
organizationName: String
|
||||
|
||||
"""
|
||||
The HTTP path for the organization
|
||||
"""
|
||||
organizationResourcePath: URI
|
||||
|
||||
"""
|
||||
The HTTP URL for the organization
|
||||
"""
|
||||
organizationUrl: URI
|
||||
|
||||
"""
|
||||
The user affected by the action
|
||||
"""
|
||||
user: User
|
||||
|
||||
"""
|
||||
For actions involving two users, the actor is the initiator and the user is the affected user.
|
||||
"""
|
||||
userLogin: String
|
||||
|
||||
"""
|
||||
The HTTP path for the user.
|
||||
"""
|
||||
userResourcePath: URI
|
||||
|
||||
"""
|
||||
The HTTP URL for the user.
|
||||
"""
|
||||
userUrl: URI
|
||||
}
|
||||
|
||||
"""
|
||||
Audit log entry for a org.remove_billing_manager event.
|
||||
"""
|
||||
@@ -27495,6 +27744,11 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
If non-null, filters repositories according to whether they are archived and not maintained
|
||||
"""
|
||||
isArchived: Boolean
|
||||
|
||||
"""
|
||||
If non-null, filters repositories according to whether they are forks of another repository
|
||||
"""
|
||||
@@ -28191,8 +28445,10 @@ union OrganizationAuditEntry =
|
||||
| OrgInviteMemberAuditEntry
|
||||
| OrgInviteToBusinessAuditEntry
|
||||
| OrgOauthAppAccessApprovedAuditEntry
|
||||
| OrgOauthAppAccessBlockedAuditEntry
|
||||
| OrgOauthAppAccessDeniedAuditEntry
|
||||
| OrgOauthAppAccessRequestedAuditEntry
|
||||
| OrgOauthAppAccessUnblockedAuditEntry
|
||||
| OrgRemoveBillingManagerAuditEntry
|
||||
| OrgRemoveMemberAuditEntry
|
||||
| OrgRemoveOutsideCollaboratorAuditEntry
|
||||
@@ -32200,6 +32456,11 @@ type ProjectV2ItemFieldReviewerValue {
|
||||
The value of a single select field in a Project item.
|
||||
"""
|
||||
type ProjectV2ItemFieldSingleSelectValue implements Node & ProjectV2ItemFieldValueCommon {
|
||||
"""
|
||||
The color applied to the selected single-select option.
|
||||
"""
|
||||
color: ProjectV2SingleSelectFieldOptionColor!
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was created.
|
||||
"""
|
||||
@@ -32215,6 +32476,16 @@ type ProjectV2ItemFieldSingleSelectValue implements Node & ProjectV2ItemFieldVal
|
||||
"""
|
||||
databaseId: Int
|
||||
|
||||
"""
|
||||
A plain-text description of the selected single-select option, such as what the option means.
|
||||
"""
|
||||
description: String
|
||||
|
||||
"""
|
||||
The description of the selected single-select option, including HTML tags.
|
||||
"""
|
||||
descriptionHTML: String
|
||||
|
||||
"""
|
||||
The project field that contains this value.
|
||||
"""
|
||||
@@ -32783,6 +33054,21 @@ type ProjectV2SingleSelectField implements Node & ProjectV2FieldCommon {
|
||||
Single select field option for a configuration for a project.
|
||||
"""
|
||||
type ProjectV2SingleSelectFieldOption {
|
||||
"""
|
||||
The option's display color.
|
||||
"""
|
||||
color: ProjectV2SingleSelectFieldOptionColor!
|
||||
|
||||
"""
|
||||
The option's plain-text description.
|
||||
"""
|
||||
description: String!
|
||||
|
||||
"""
|
||||
The option's description, possibly containing HTML.
|
||||
"""
|
||||
descriptionHTML: String!
|
||||
|
||||
"""
|
||||
The option's ID.
|
||||
"""
|
||||
@@ -36019,6 +36305,11 @@ type PullRequestThread implements Node {
|
||||
"""
|
||||
line: Int
|
||||
|
||||
"""
|
||||
Identifies the file path of this thread.
|
||||
"""
|
||||
path: String!
|
||||
|
||||
"""
|
||||
Identifies the pull request associated with this thread.
|
||||
"""
|
||||
@@ -36044,6 +36335,11 @@ type PullRequestThread implements Node {
|
||||
"""
|
||||
startLine: Int
|
||||
|
||||
"""
|
||||
The level at which the comments in the corresponding thread are targeted, can be a diff line or a file
|
||||
"""
|
||||
subjectType: PullRequestReviewThreadSubjectType!
|
||||
|
||||
"""
|
||||
Indicates whether the current viewer can reply to this thread.
|
||||
"""
|
||||
@@ -43389,6 +43685,26 @@ type RepositoryEdge {
|
||||
node: Repository
|
||||
}
|
||||
|
||||
"""
|
||||
Parameters to be used for the repository_id condition
|
||||
"""
|
||||
type RepositoryIdConditionTarget {
|
||||
"""
|
||||
One of these repo IDs must match the repo.
|
||||
"""
|
||||
repositoryIds: [ID!]!
|
||||
}
|
||||
|
||||
"""
|
||||
Parameters to be used for the repository_id condition
|
||||
"""
|
||||
input RepositoryIdConditionTargetInput {
|
||||
"""
|
||||
One of these repo IDs must match the repo.
|
||||
"""
|
||||
repositoryIds: [ID!]!
|
||||
}
|
||||
|
||||
"""
|
||||
A subset of repository info.
|
||||
"""
|
||||
@@ -44060,6 +44376,11 @@ interface RepositoryOwner {
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
If non-null, filters repositories according to whether they are archived and not maintained
|
||||
"""
|
||||
isArchived: Boolean
|
||||
|
||||
"""
|
||||
If non-null, filters repositories according to whether they are forks of another repository
|
||||
"""
|
||||
@@ -44191,6 +44512,11 @@ type RepositoryRuleConditions {
|
||||
"""
|
||||
refName: RefNameConditionTarget
|
||||
|
||||
"""
|
||||
Configuration for the repository_id condition
|
||||
"""
|
||||
repositoryId: RepositoryIdConditionTarget
|
||||
|
||||
"""
|
||||
Configuration for the repository_name condition
|
||||
"""
|
||||
@@ -44206,6 +44532,11 @@ input RepositoryRuleConditionsInput {
|
||||
"""
|
||||
refName: RefNameConditionTargetInput
|
||||
|
||||
"""
|
||||
Configuration for the repository_id condition
|
||||
"""
|
||||
repositoryId: RepositoryIdConditionTargetInput
|
||||
|
||||
"""
|
||||
Configuration for the repository_name condition
|
||||
"""
|
||||
@@ -44380,11 +44711,6 @@ type RepositoryRuleset implements Node {
|
||||
last: Int
|
||||
): RepositoryRulesetBypassActorConnection
|
||||
|
||||
"""
|
||||
The bypass mode of this ruleset
|
||||
"""
|
||||
bypassMode: RuleBypassMode!
|
||||
|
||||
"""
|
||||
The set of conditions that must evaluate to true for this ruleset to apply
|
||||
"""
|
||||
@@ -44465,14 +44791,49 @@ type RepositoryRulesetBypassActor implements Node {
|
||||
The actor that can bypass rules.
|
||||
"""
|
||||
actor: BypassActor
|
||||
|
||||
"""
|
||||
The mode for the bypass actor
|
||||
"""
|
||||
bypassMode: RepositoryRulesetBypassActorBypassMode
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
This actor represents the ability for an organization admin to bypass
|
||||
"""
|
||||
organizationAdmin: Boolean!
|
||||
|
||||
"""
|
||||
If the actor is a repository role, the repository role's ID that can bypass
|
||||
"""
|
||||
repositoryRoleDatabaseId: Int
|
||||
|
||||
"""
|
||||
If the actor is a repository role, the repository role's name that can bypass
|
||||
"""
|
||||
repositoryRoleName: String
|
||||
|
||||
"""
|
||||
Identifies the ruleset associated with the allowed actor
|
||||
"""
|
||||
repositoryRuleset: RepositoryRuleset
|
||||
}
|
||||
|
||||
"""
|
||||
The bypass mode for a specific actor on a ruleset.
|
||||
"""
|
||||
enum RepositoryRulesetBypassActorBypassMode {
|
||||
"""
|
||||
The actor can always bypass rules
|
||||
"""
|
||||
ALWAYS
|
||||
|
||||
"""
|
||||
The actor can only bypass rules via a pull request
|
||||
"""
|
||||
PULL_REQUEST
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for RepositoryRulesetBypassActor.
|
||||
"""
|
||||
@@ -44513,6 +44874,32 @@ type RepositoryRulesetBypassActorEdge {
|
||||
node: RepositoryRulesetBypassActor
|
||||
}
|
||||
|
||||
"""
|
||||
Specifies the attributes for a new or updated ruleset bypass actor. Only one of
|
||||
`actor_id`, `repository_role_database_id`, or `organization_admin` should be specified.
|
||||
"""
|
||||
input RepositoryRulesetBypassActorInput {
|
||||
"""
|
||||
For Team and Integration bypasses, the Team or Integration ID
|
||||
"""
|
||||
actorId: ID
|
||||
|
||||
"""
|
||||
The bypass mode for this actor.
|
||||
"""
|
||||
bypassMode: RepositoryRulesetBypassActorBypassMode!
|
||||
|
||||
"""
|
||||
For org admin bupasses, true
|
||||
"""
|
||||
organizationAdmin: Boolean
|
||||
|
||||
"""
|
||||
For role bypasses, the role database ID
|
||||
"""
|
||||
repositoryRoleDatabaseId: Int
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for RepositoryRuleset.
|
||||
"""
|
||||
@@ -45830,41 +46217,6 @@ enum RoleInOrganization {
|
||||
UNAFFILIATED
|
||||
}
|
||||
|
||||
"""
|
||||
The bypass mode for a rule or ruleset.
|
||||
"""
|
||||
enum RuleBypassMode {
|
||||
"""
|
||||
Bypassing is disabled
|
||||
"""
|
||||
NONE
|
||||
|
||||
"""
|
||||
Those with bypass permission at the organization level can bypass
|
||||
"""
|
||||
ORGANIZATION
|
||||
|
||||
"""
|
||||
Those with bypass permission at the organization level can always bypass
|
||||
"""
|
||||
ORGANIZATION_ALWAYS
|
||||
|
||||
"""
|
||||
Bypassing is disabled
|
||||
"""
|
||||
ORGANIZATION_NONE
|
||||
|
||||
"""
|
||||
Those with bypass permission at the organization level can bypass for pull requests only
|
||||
"""
|
||||
ORGANIZATION_PRS_ONLY
|
||||
|
||||
"""
|
||||
Those with bypass permission at the repository level can bypass
|
||||
"""
|
||||
REPOSITORY
|
||||
}
|
||||
|
||||
"""
|
||||
The level of enforcement for a rule or ruleset.
|
||||
"""
|
||||
@@ -47548,6 +47900,11 @@ type SponsorsActivity implements Node {
|
||||
What action this activity indicates took place.
|
||||
"""
|
||||
action: SponsorsActivityAction!
|
||||
|
||||
"""
|
||||
The sponsor's current privacy level.
|
||||
"""
|
||||
currentPrivacyLevel: SponsorshipPrivacy
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
@@ -51637,6 +51994,9 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
|
||||
Author's association with the discussion's team.
|
||||
"""
|
||||
authorAssociation: CommentAuthorAssociation!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The body as Markdown.
|
||||
@@ -51657,6 +52017,9 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
|
||||
Identifies the discussion body hash.
|
||||
"""
|
||||
bodyVersion: String!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
A list of comments on this discussion.
|
||||
@@ -51692,16 +52055,25 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
|
||||
"""
|
||||
orderBy: TeamDiscussionCommentOrder
|
||||
): TeamDiscussionCommentConnection!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The HTTP path for discussion comments
|
||||
"""
|
||||
commentsResourcePath: URI!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The HTTP URL for discussion comments
|
||||
"""
|
||||
commentsUrl: URI!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was created.
|
||||
@@ -51733,11 +52105,17 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
|
||||
Whether or not the discussion is pinned.
|
||||
"""
|
||||
isPinned: Boolean!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
Whether or not the discussion is only visible to team members and org admins.
|
||||
"""
|
||||
isPrivate: Boolean!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The moment the editor made the last edit
|
||||
@@ -51748,6 +52126,9 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
|
||||
Identifies the discussion within its team.
|
||||
"""
|
||||
number: Int!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
Identifies when the comment was published at.
|
||||
@@ -51798,16 +52179,25 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
|
||||
The HTTP path for this discussion
|
||||
"""
|
||||
resourcePath: URI!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The team that defines the context of this discussion.
|
||||
"""
|
||||
team: Team!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The title of the discussion
|
||||
"""
|
||||
title: String!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was last updated.
|
||||
@@ -51818,6 +52208,9 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
|
||||
The HTTP URL for this discussion
|
||||
"""
|
||||
url: URI!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
A list of edits to this content.
|
||||
@@ -51853,6 +52246,9 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
|
||||
Whether or not the current viewer can pin this discussion.
|
||||
"""
|
||||
viewerCanPin: Boolean!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
Can user react to this subject
|
||||
@@ -51898,6 +52294,9 @@ type TeamDiscussionComment implements Comment & Deletable & Node & Reactable & U
|
||||
Author's association with the comment's team.
|
||||
"""
|
||||
authorAssociation: CommentAuthorAssociation!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The body as Markdown.
|
||||
@@ -51918,6 +52317,9 @@ type TeamDiscussionComment implements Comment & Deletable & Node & Reactable & U
|
||||
The current version of the body content.
|
||||
"""
|
||||
bodyVersion: String!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was created.
|
||||
@@ -51938,6 +52340,9 @@ type TeamDiscussionComment implements Comment & Deletable & Node & Reactable & U
|
||||
The discussion this comment is about.
|
||||
"""
|
||||
discussion: TeamDiscussion!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The actor who edited the comment.
|
||||
@@ -51959,6 +52364,9 @@ type TeamDiscussionComment implements Comment & Deletable & Node & Reactable & U
|
||||
Identifies the comment number.
|
||||
"""
|
||||
number: Int!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
Identifies when the comment was published at.
|
||||
@@ -52009,6 +52417,9 @@ type TeamDiscussionComment implements Comment & Deletable & Node & Reactable & U
|
||||
The HTTP path for this comment
|
||||
"""
|
||||
resourcePath: URI!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was last updated.
|
||||
@@ -52019,6 +52430,9 @@ type TeamDiscussionComment implements Comment & Deletable & Node & Reactable & U
|
||||
The HTTP URL for this comment
|
||||
"""
|
||||
url: URI!
|
||||
@deprecated(
|
||||
reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
A list of edits to this content.
|
||||
@@ -56159,14 +56573,9 @@ Autogenerated input type of UpdateRepositoryRuleset
|
||||
"""
|
||||
input UpdateRepositoryRulesetInput {
|
||||
"""
|
||||
A list of Team or App IDs allowed to bypass rules in this ruleset.
|
||||
A list of actors that are allowed to bypass rules in this ruleset.
|
||||
"""
|
||||
bypassActorIds: [ID!]
|
||||
|
||||
"""
|
||||
The bypass mode for this ruleset
|
||||
"""
|
||||
bypassMode: RuleBypassMode
|
||||
bypassActors: [RepositoryRulesetBypassActorInput!]
|
||||
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
@@ -57406,6 +57815,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
If non-null, filters repositories according to whether they are archived and not maintained
|
||||
"""
|
||||
isArchived: Boolean
|
||||
|
||||
"""
|
||||
If non-null, filters repositories according to whether they are forks of another repository
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user