Action ran graphql script"update-files"

This commit is contained in:
rsese 2021-12-03 23:56:42 +00:00 коммит произвёл GitHub
Родитель 1b00f1e33d
Коммит 45428fb910
13 изменённых файлов: 5649 добавлений и 5598 удалений

Просмотреть файл

@ -75,15 +75,6 @@
- RemovedFromProjectEvent.projectColumnName
owning_teams:
- '@github/github-projects'
- title: Create content attachments
description: This preview adds support for creating content attachments.
toggled_by: ':corsair-preview'
announcement: null
updates: null
toggled_on:
- Mutation.createContentAttachment
owning_teams:
- '@github/feature-lifecycle'
- title: Labels Preview
description: >-
This preview adds support for adding, updating, creating and deleting

Просмотреть файл

@ -1492,6 +1492,11 @@ type Bot implements Actor & Node & UniformResourceLocatable {
url: URI!
}
"""
Types which can be actors for `BranchActorAllowance` objects.
"""
union BranchActorAllowanceActor = Team | User
"""
A branch protection rule.
"""
@ -1531,6 +1536,31 @@ type BranchProtectionRule implements Node {
last: Int
): BranchProtectionRuleConflictConnection!
"""
A list of actors able to bypass PRs for this branch protection rule.
"""
bypassPullRequestAllowances(
"""
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
): BypassPullRequestAllowanceConnection!
"""
The actor who created this branch protection rule.
"""
@ -1803,6 +1833,62 @@ type BranchProtectionRuleEdge {
node: BranchProtectionRule
}
"""
A team or user who has the ability to bypass a pull request requirement on a protected branch.
"""
type BypassPullRequestAllowance implements Node {
"""
The actor that can dismiss.
"""
actor: BranchActorAllowanceActor
"""
Identifies the branch protection rule associated with the allowed user or team.
"""
branchProtectionRule: BranchProtectionRule
id: ID!
}
"""
The connection type for BypassPullRequestAllowance.
"""
type BypassPullRequestAllowanceConnection {
"""
A list of edges.
"""
edges: [BypassPullRequestAllowanceEdge]
"""
A list of nodes.
"""
nodes: [BypassPullRequestAllowance]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type BypassPullRequestAllowanceEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: BypassPullRequestAllowance
}
"""
The Common Vulnerability Scoring System
"""
@ -4337,48 +4423,6 @@ type ConnectedEvent implements Node {
subject: ReferencedSubject!
}
"""
A content attachment
"""
type ContentAttachment {
"""
The body text of the content attachment. This parameter supports markdown.
"""
body: String!
"""
The content reference that the content attachment is attached to.
"""
contentReference: ContentReference!
"""
Identifies the primary key from the database.
"""
databaseId: Int!
id: ID!
"""
The title of the content attachment.
"""
title: String!
}
"""
A content reference
"""
type ContentReference {
"""
Identifies the primary key from the database.
"""
databaseId: Int!
id: ID!
"""
The reference of the content reference.
"""
reference: String!
}
"""
Represents a contribution a user made on GitHub, such as opening an issue.
"""
@ -5132,6 +5176,11 @@ input CreateBranchProtectionRuleInput {
"""
allowsForcePushes: Boolean
"""
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
"""
bypassPullRequestActorIds: [ID!]
"""
A unique identifier for the client performing the mutation.
"""
@ -5408,46 +5457,6 @@ type CreateCommitOnBranchPayload {
ref: Ref
}
"""
Autogenerated input type of CreateContentAttachment
"""
input CreateContentAttachmentInput {
"""
The body of the content attachment, which may contain markdown.
"""
body: String!
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The node ID of the content_reference.
"""
contentReferenceId: ID! @possibleTypes(concreteTypes: ["ContentReference"])
"""
The title of the content attachment.
"""
title: String!
}
"""
Autogenerated return type of CreateContentAttachment
"""
type CreateContentAttachmentPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The newly created content attachment.
"""
contentAttachment: ContentAttachment
}
"""
Autogenerated input type of CreateDeployment
"""
@ -16669,16 +16678,6 @@ type Mutation {
input: CreateCommitOnBranchInput!
): CreateCommitOnBranchPayload
"""
Create a content attachment.
"""
createContentAttachment(
"""
Parameters for CreateContentAttachment
"""
input: CreateContentAttachmentInput!
): CreateContentAttachmentPayload @preview(toggledBy: "corsair-preview")
"""
Creates a new deployment event.
"""
@ -37984,6 +37983,11 @@ input UpdateBranchProtectionRuleInput {
"""
branchProtectionRuleId: ID! @possibleTypes(concreteTypes: ["BranchProtectionRule"])
"""
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
"""
bypassPullRequestActorIds: [ID!]
"""
A unique identifier for the client performing the mutation.
"""

Просмотреть файл

@ -91,15 +91,6 @@
- RemovedFromProjectEvent.projectColumnName
owning_teams:
- '@github/github-projects'
- title: Create content attachments
description: This preview adds support for creating content attachments.
toggled_by: ':corsair-preview'
announcement: null
updates: null
toggled_on:
- Mutation.createContentAttachment
owning_teams:
- '@github/feature-lifecycle'
- title: Labels Preview
description: >-
This preview adds support for adding, updating, creating and deleting

Просмотреть файл

@ -1647,6 +1647,11 @@ type Bot implements Actor & Node & UniformResourceLocatable {
url: URI!
}
"""
Types which can be actors for `BranchActorAllowance` objects.
"""
union BranchActorAllowanceActor = Team | User
"""
A branch protection rule.
"""
@ -1686,6 +1691,31 @@ type BranchProtectionRule implements Node {
last: Int
): BranchProtectionRuleConflictConnection!
"""
A list of actors able to bypass PRs for this branch protection rule.
"""
bypassPullRequestAllowances(
"""
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
): BypassPullRequestAllowanceConnection!
"""
The actor who created this branch protection rule.
"""
@ -1958,6 +1988,62 @@ type BranchProtectionRuleEdge {
node: BranchProtectionRule
}
"""
A team or user who has the ability to bypass a pull request requirement on a protected branch.
"""
type BypassPullRequestAllowance implements Node {
"""
The actor that can dismiss.
"""
actor: BranchActorAllowanceActor
"""
Identifies the branch protection rule associated with the allowed user or team.
"""
branchProtectionRule: BranchProtectionRule
id: ID!
}
"""
The connection type for BypassPullRequestAllowance.
"""
type BypassPullRequestAllowanceConnection {
"""
A list of edges.
"""
edges: [BypassPullRequestAllowanceEdge]
"""
A list of nodes.
"""
nodes: [BypassPullRequestAllowance]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type BypassPullRequestAllowanceEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: BypassPullRequestAllowance
}
"""
The Common Vulnerability Scoring System
"""
@ -4574,48 +4660,6 @@ type ConnectedEvent implements Node {
subject: ReferencedSubject!
}
"""
A content attachment
"""
type ContentAttachment {
"""
The body text of the content attachment. This parameter supports markdown.
"""
body: String!
"""
The content reference that the content attachment is attached to.
"""
contentReference: ContentReference!
"""
Identifies the primary key from the database.
"""
databaseId: Int!
id: ID!
"""
The title of the content attachment.
"""
title: String!
}
"""
A content reference
"""
type ContentReference {
"""
Identifies the primary key from the database.
"""
databaseId: Int!
id: ID!
"""
The reference of the content reference.
"""
reference: String!
}
"""
Represents a contribution a user made on GitHub, such as opening an issue.
"""
@ -5369,6 +5413,11 @@ input CreateBranchProtectionRuleInput {
"""
allowsForcePushes: Boolean
"""
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
"""
bypassPullRequestActorIds: [ID!]
"""
A unique identifier for the client performing the mutation.
"""
@ -5645,46 +5694,6 @@ type CreateCommitOnBranchPayload {
ref: Ref
}
"""
Autogenerated input type of CreateContentAttachment
"""
input CreateContentAttachmentInput {
"""
The body of the content attachment, which may contain markdown.
"""
body: String!
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The node ID of the content_reference.
"""
contentReferenceId: ID! @possibleTypes(concreteTypes: ["ContentReference"])
"""
The title of the content attachment.
"""
title: String!
}
"""
Autogenerated return type of CreateContentAttachment
"""
type CreateContentAttachmentPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The newly created content attachment.
"""
contentAttachment: ContentAttachment
}
"""
Autogenerated input type of CreateDeployment
"""
@ -18071,16 +18080,6 @@ type Mutation {
input: CreateCommitOnBranchInput!
): CreateCommitOnBranchPayload
"""
Create a content attachment.
"""
createContentAttachment(
"""
Parameters for CreateContentAttachment
"""
input: CreateContentAttachmentInput!
): CreateContentAttachmentPayload @preview(toggledBy: "corsair-preview")
"""
Creates a new deployment event.
"""
@ -42999,6 +42998,11 @@ input UpdateBranchProtectionRuleInput {
"""
branchProtectionRuleId: ID! @possibleTypes(concreteTypes: ["BranchProtectionRule"])
"""
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
"""
bypassPullRequestActorIds: [ID!]
"""
A unique identifier for the client performing the mutation.
"""

Просмотреть файл

@ -91,15 +91,6 @@
- RemovedFromProjectEvent.projectColumnName
owning_teams:
- '@github/github-projects'
- title: Create content attachments
description: This preview adds support for creating content attachments.
toggled_by: ':corsair-preview'
announcement: null
updates: null
toggled_on:
- Mutation.createContentAttachment
owning_teams:
- '@github/feature-lifecycle'
- title: Labels Preview
description: >-
This preview adds support for adding, updating, creating and deleting

Просмотреть файл

@ -1647,6 +1647,11 @@ type Bot implements Actor & Node & UniformResourceLocatable {
url: URI!
}
"""
Types which can be actors for `BranchActorAllowance` objects.
"""
union BranchActorAllowanceActor = Team | User
"""
A branch protection rule.
"""
@ -1686,6 +1691,31 @@ type BranchProtectionRule implements Node {
last: Int
): BranchProtectionRuleConflictConnection!
"""
A list of actors able to bypass PRs for this branch protection rule.
"""
bypassPullRequestAllowances(
"""
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
): BypassPullRequestAllowanceConnection!
"""
The actor who created this branch protection rule.
"""
@ -1958,6 +1988,62 @@ type BranchProtectionRuleEdge {
node: BranchProtectionRule
}
"""
A team or user who has the ability to bypass a pull request requirement on a protected branch.
"""
type BypassPullRequestAllowance implements Node {
"""
The actor that can dismiss.
"""
actor: BranchActorAllowanceActor
"""
Identifies the branch protection rule associated with the allowed user or team.
"""
branchProtectionRule: BranchProtectionRule
id: ID!
}
"""
The connection type for BypassPullRequestAllowance.
"""
type BypassPullRequestAllowanceConnection {
"""
A list of edges.
"""
edges: [BypassPullRequestAllowanceEdge]
"""
A list of nodes.
"""
nodes: [BypassPullRequestAllowance]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type BypassPullRequestAllowanceEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: BypassPullRequestAllowance
}
"""
The Common Vulnerability Scoring System
"""
@ -4574,48 +4660,6 @@ type ConnectedEvent implements Node {
subject: ReferencedSubject!
}
"""
A content attachment
"""
type ContentAttachment {
"""
The body text of the content attachment. This parameter supports markdown.
"""
body: String!
"""
The content reference that the content attachment is attached to.
"""
contentReference: ContentReference!
"""
Identifies the primary key from the database.
"""
databaseId: Int!
id: ID!
"""
The title of the content attachment.
"""
title: String!
}
"""
A content reference
"""
type ContentReference {
"""
Identifies the primary key from the database.
"""
databaseId: Int!
id: ID!
"""
The reference of the content reference.
"""
reference: String!
}
"""
Represents a contribution a user made on GitHub, such as opening an issue.
"""
@ -5369,6 +5413,11 @@ input CreateBranchProtectionRuleInput {
"""
allowsForcePushes: Boolean
"""
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
"""
bypassPullRequestActorIds: [ID!]
"""
A unique identifier for the client performing the mutation.
"""
@ -5645,46 +5694,6 @@ type CreateCommitOnBranchPayload {
ref: Ref
}
"""
Autogenerated input type of CreateContentAttachment
"""
input CreateContentAttachmentInput {
"""
The body of the content attachment, which may contain markdown.
"""
body: String!
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The node ID of the content_reference.
"""
contentReferenceId: ID! @possibleTypes(concreteTypes: ["ContentReference"])
"""
The title of the content attachment.
"""
title: String!
}
"""
Autogenerated return type of CreateContentAttachment
"""
type CreateContentAttachmentPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The newly created content attachment.
"""
contentAttachment: ContentAttachment
}
"""
Autogenerated input type of CreateDeployment
"""
@ -18071,16 +18080,6 @@ type Mutation {
input: CreateCommitOnBranchInput!
): CreateCommitOnBranchPayload
"""
Create a content attachment.
"""
createContentAttachment(
"""
Parameters for CreateContentAttachment
"""
input: CreateContentAttachmentInput!
): CreateContentAttachmentPayload @preview(toggledBy: "corsair-preview")
"""
Creates a new deployment event.
"""
@ -42999,6 +42998,11 @@ input UpdateBranchProtectionRuleInput {
"""
branchProtectionRuleId: ID! @possibleTypes(concreteTypes: ["BranchProtectionRule"])
"""
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
"""
bypassPullRequestActorIds: [ID!]
"""
A unique identifier for the client performing the mutation.
"""

Просмотреть файл

@ -1,4 +1,28 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `BranchActorAllowanceActor` was added",
"Type `BypassPullRequestAllowance` was added",
"Type `BypassPullRequestAllowanceConnection` was added",
"Type `BypassPullRequestAllowanceEdge` was added",
"Type `ContentAttachment` was removed",
"Type `ContentReference` was removed",
"Type `CreateContentAttachmentInput` was removed",
"Type `CreateContentAttachmentPayload` was removed",
"Field `bypassPullRequestAllowances` was added to object type `BranchProtectionRule`",
"Input field `bypassPullRequestActorIds` was added to input object type `CreateBranchProtectionRuleInput`",
"Field `createContentAttachment` was removed from object type `Mutation`",
"Input field `bypassPullRequestActorIds` was added to input object type `UpdateBranchProtectionRuleInput`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-12-03"
},
{
"schemaChanges": [
{

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -101,19 +101,6 @@
"accept_header": "application/vnd.github.starfox-preview+json",
"href": "/graphql/overview/schema-previews#project-event-details-preview"
},
{
"title": "Create content attachments preview",
"description": "This preview adds support for creating content attachments.",
"toggled_by": "corsair-preview",
"toggled_on": [
"Mutation.createContentAttachment"
],
"owning_teams": [
"@github/feature-lifecycle"
],
"accept_header": "application/vnd.github.corsair-preview+json",
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
},
{
"title": "Labels preview",
"description": "This preview adds support for adding, updating, creating and deleting labels.",
@ -263,19 +250,6 @@
"accept_header": "application/vnd.github.starfox-preview+json",
"href": "/graphql/overview/schema-previews#project-event-details-preview"
},
{
"title": "Create content attachments preview",
"description": "This preview adds support for creating content attachments.",
"toggled_by": "corsair-preview",
"toggled_on": [
"Mutation.createContentAttachment"
],
"owning_teams": [
"@github/feature-lifecycle"
],
"accept_header": "application/vnd.github.corsair-preview+json",
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
},
{
"title": "Labels preview",
"description": "This preview adds support for adding, updating, creating and deleting labels.",
@ -991,19 +965,6 @@
"accept_header": "application/vnd.github.starfox-preview+json",
"href": "/graphql/overview/schema-previews#project-event-details-preview"
},
{
"title": "Create content attachments preview",
"description": "This preview adds support for creating content attachments.",
"toggled_by": "corsair-preview",
"toggled_on": [
"Mutation.createContentAttachment"
],
"owning_teams": [
"@github/feature-lifecycle"
],
"accept_header": "application/vnd.github.corsair-preview+json",
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
},
{
"title": "Labels preview",
"description": "This preview adds support for adding, updating, creating and deleting labels.",

Просмотреть файл

@ -2082,54 +2082,6 @@
}
]
},
{
"name": "createContentAttachment",
"kind": "mutations",
"id": "createcontentattachment",
"href": "/graphql/reference/mutations#createcontentattachment",
"description": "<p>Create a content attachment.</p>",
"isDeprecated": false,
"preview": {
"title": "Create content attachments preview",
"description": "This preview adds support for creating content attachments.",
"toggled_by": "corsair-preview",
"toggled_on": [
"Mutation.createContentAttachment"
],
"owning_teams": [
"@github/feature-lifecycle"
],
"accept_header": "application/vnd.github.corsair-preview+json",
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
},
"inputFields": [
{
"name": "input",
"type": "CreateContentAttachmentInput!",
"id": "createcontentattachmentinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#createcontentattachmentinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "contentAttachment",
"type": "ContentAttachment",
"id": "contentattachment",
"kind": "objects",
"href": "/graphql/reference/objects#contentattachment",
"description": "<p>The newly created content attachment.</p>"
}
]
},
{
"name": "createDeployment",
"kind": "mutations",
@ -8373,6 +8325,56 @@
}
]
},
{
"name": "bypassPullRequestAllowances",
"description": "<p>A list of actors able to bypass PRs for this branch protection rule.</p>",
"type": "BypassPullRequestAllowanceConnection!",
"id": "bypasspullrequestallowanceconnection",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowanceconnection",
"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": "creator",
"description": "<p>The actor who created this branch protection rule.</p>",
@ -8844,6 +8846,104 @@
}
]
},
{
"name": "BypassPullRequestAllowance",
"kind": "objects",
"id": "bypasspullrequestallowance",
"href": "/graphql/reference/objects#bypasspullrequestallowance",
"description": "<p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>",
"implements": [
{
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
}
],
"fields": [
{
"name": "actor",
"description": "<p>The actor that can dismiss.</p>",
"type": "BranchActorAllowanceActor",
"id": "branchactorallowanceactor",
"kind": "unions",
"href": "/graphql/reference/unions#branchactorallowanceactor"
},
{
"name": "branchProtectionRule",
"description": "<p>Identifies the branch protection rule associated with the allowed user or team.</p>",
"type": "BranchProtectionRule",
"id": "branchprotectionrule",
"kind": "objects",
"href": "/graphql/reference/objects#branchprotectionrule"
}
]
},
{
"name": "BypassPullRequestAllowanceConnection",
"kind": "objects",
"id": "bypasspullrequestallowanceconnection",
"href": "/graphql/reference/objects#bypasspullrequestallowanceconnection",
"description": "<p>The connection type for BypassPullRequestAllowance.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[BypassPullRequestAllowanceEdge]",
"id": "bypasspullrequestallowanceedge",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowanceedge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[BypassPullRequestAllowance]",
"id": "bypasspullrequestallowance",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowance"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "BypassPullRequestAllowanceEdge",
"kind": "objects",
"id": "bypasspullrequestallowanceedge",
"href": "/graphql/reference/objects#bypasspullrequestallowanceedge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "BypassPullRequestAllowance",
"id": "bypasspullrequestallowance",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowance"
}
]
},
{
"name": "CVSS",
"kind": "objects",
@ -11841,72 +11941,6 @@
}
]
},
{
"name": "ContentAttachment",
"kind": "objects",
"id": "contentattachment",
"href": "/graphql/reference/objects#contentattachment",
"description": "<p>A content attachment.</p>",
"fields": [
{
"name": "body",
"description": "<p>The body text of the content attachment. This parameter supports markdown.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "contentReference",
"description": "<p>The content reference that the content attachment is attached to.</p>",
"type": "ContentReference!",
"id": "contentreference",
"kind": "objects",
"href": "/graphql/reference/objects#contentreference"
},
{
"name": "databaseId",
"description": "<p>Identifies the primary key from the database.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "title",
"description": "<p>The title of the content attachment.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "ContentReference",
"kind": "objects",
"id": "contentreference",
"href": "/graphql/reference/objects#contentreference",
"description": "<p>A content reference.</p>",
"fields": [
{
"name": "databaseId",
"description": "<p>Identifies the primary key from the database.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "reference",
"description": "<p>The reference of the content reference.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "ContributionCalendar",
"kind": "objects",
@ -69937,6 +69971,25 @@
}
]
},
{
"name": "BranchActorAllowanceActor",
"kind": "unions",
"id": "branchactorallowanceactor",
"href": "/graphql/reference/unions#branchactorallowanceactor",
"description": "<p>Types which can be actors for <code>BranchActorAllowance</code> objects.</p>",
"possibleTypes": [
{
"name": "Team",
"id": "team",
"href": "/graphql/reference/objects#team"
},
{
"name": "User",
"id": "user",
"href": "/graphql/reference/objects#user"
}
]
},
{
"name": "Closer",
"kind": "unions",
@ -73192,6 +73245,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "bypassPullRequestActorIds",
"description": "<p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
@ -73536,48 +73597,6 @@
}
]
},
{
"name": "CreateContentAttachmentInput",
"kind": "inputObjects",
"id": "createcontentattachmentinput",
"href": "/graphql/reference/input-objects#createcontentattachmentinput",
"description": "<p>Autogenerated input type of CreateContentAttachment.</p>",
"inputFields": [
{
"name": "body",
"description": "<p>The body of the content attachment, which may contain markdown.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "contentReferenceId",
"description": "<p>The node ID of the content_reference.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "title",
"description": "<p>The title of the content attachment.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "CreateDeploymentInput",
"kind": "inputObjects",
@ -78439,6 +78458,14 @@
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "bypassPullRequestActorIds",
"description": "<p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",

Просмотреть файл

@ -1591,54 +1591,6 @@
}
]
},
{
"name": "createContentAttachment",
"kind": "mutations",
"id": "createcontentattachment",
"href": "/graphql/reference/mutations#createcontentattachment",
"description": "<p>Create a content attachment.</p>",
"isDeprecated": false,
"preview": {
"title": "Create content attachments preview",
"description": "This preview adds support for creating content attachments.",
"toggled_by": "corsair-preview",
"toggled_on": [
"Mutation.createContentAttachment"
],
"owning_teams": [
"@github/feature-lifecycle"
],
"accept_header": "application/vnd.github.corsair-preview+json",
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
},
"inputFields": [
{
"name": "input",
"type": "CreateContentAttachmentInput!",
"id": "createcontentattachmentinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#createcontentattachmentinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "contentAttachment",
"type": "ContentAttachment",
"id": "contentattachment",
"kind": "objects",
"href": "/graphql/reference/objects#contentattachment",
"description": "<p>The newly created content attachment.</p>"
}
]
},
{
"name": "createDeployment",
"kind": "mutations",
@ -7172,6 +7124,56 @@
}
]
},
{
"name": "bypassPullRequestAllowances",
"description": "<p>A list of actors able to bypass PRs for this branch protection rule.</p>",
"type": "BypassPullRequestAllowanceConnection!",
"id": "bypasspullrequestallowanceconnection",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowanceconnection",
"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": "creator",
"description": "<p>The actor who created this branch protection rule.</p>",
@ -7643,6 +7645,104 @@
}
]
},
{
"name": "BypassPullRequestAllowance",
"kind": "objects",
"id": "bypasspullrequestallowance",
"href": "/graphql/reference/objects#bypasspullrequestallowance",
"description": "<p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>",
"implements": [
{
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
}
],
"fields": [
{
"name": "actor",
"description": "<p>The actor that can dismiss.</p>",
"type": "BranchActorAllowanceActor",
"id": "branchactorallowanceactor",
"kind": "unions",
"href": "/graphql/reference/unions#branchactorallowanceactor"
},
{
"name": "branchProtectionRule",
"description": "<p>Identifies the branch protection rule associated with the allowed user or team.</p>",
"type": "BranchProtectionRule",
"id": "branchprotectionrule",
"kind": "objects",
"href": "/graphql/reference/objects#branchprotectionrule"
}
]
},
{
"name": "BypassPullRequestAllowanceConnection",
"kind": "objects",
"id": "bypasspullrequestallowanceconnection",
"href": "/graphql/reference/objects#bypasspullrequestallowanceconnection",
"description": "<p>The connection type for BypassPullRequestAllowance.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[BypassPullRequestAllowanceEdge]",
"id": "bypasspullrequestallowanceedge",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowanceedge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[BypassPullRequestAllowance]",
"id": "bypasspullrequestallowance",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowance"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "BypassPullRequestAllowanceEdge",
"kind": "objects",
"id": "bypasspullrequestallowanceedge",
"href": "/graphql/reference/objects#bypasspullrequestallowanceedge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "BypassPullRequestAllowance",
"id": "bypasspullrequestallowance",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowance"
}
]
},
{
"name": "CVSS",
"kind": "objects",
@ -10640,72 +10740,6 @@
}
]
},
{
"name": "ContentAttachment",
"kind": "objects",
"id": "contentattachment",
"href": "/graphql/reference/objects#contentattachment",
"description": "<p>A content attachment.</p>",
"fields": [
{
"name": "body",
"description": "<p>The body text of the content attachment. This parameter supports markdown.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "contentReference",
"description": "<p>The content reference that the content attachment is attached to.</p>",
"type": "ContentReference!",
"id": "contentreference",
"kind": "objects",
"href": "/graphql/reference/objects#contentreference"
},
{
"name": "databaseId",
"description": "<p>Identifies the primary key from the database.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "title",
"description": "<p>The title of the content attachment.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "ContentReference",
"kind": "objects",
"id": "contentreference",
"href": "/graphql/reference/objects#contentreference",
"description": "<p>A content reference.</p>",
"fields": [
{
"name": "databaseId",
"description": "<p>Identifies the primary key from the database.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "reference",
"description": "<p>The reference of the content reference.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "ContributionCalendar",
"kind": "objects",
@ -61777,6 +61811,25 @@
}
]
},
{
"name": "BranchActorAllowanceActor",
"kind": "unions",
"id": "branchactorallowanceactor",
"href": "/graphql/reference/unions#branchactorallowanceactor",
"description": "<p>Types which can be actors for <code>BranchActorAllowance</code> objects.</p>",
"possibleTypes": [
{
"name": "Team",
"id": "team",
"href": "/graphql/reference/objects#team"
},
{
"name": "User",
"id": "user",
"href": "/graphql/reference/objects#user"
}
]
},
{
"name": "Closer",
"kind": "unions",
@ -64719,6 +64772,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "bypassPullRequestActorIds",
"description": "<p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
@ -65063,48 +65124,6 @@
}
]
},
{
"name": "CreateContentAttachmentInput",
"kind": "inputObjects",
"id": "createcontentattachmentinput",
"href": "/graphql/reference/input-objects#createcontentattachmentinput",
"description": "<p>Autogenerated input type of CreateContentAttachment.</p>",
"inputFields": [
{
"name": "body",
"description": "<p>The body of the content attachment, which may contain markdown.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "contentReferenceId",
"description": "<p>The node ID of the content_reference.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "title",
"description": "<p>The title of the content attachment.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "CreateDeploymentInput",
"kind": "inputObjects",
@ -69023,6 +69042,14 @@
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "bypassPullRequestActorIds",
"description": "<p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",

Просмотреть файл

@ -2082,54 +2082,6 @@
}
]
},
{
"name": "createContentAttachment",
"kind": "mutations",
"id": "createcontentattachment",
"href": "/graphql/reference/mutations#createcontentattachment",
"description": "<p>Create a content attachment.</p>",
"isDeprecated": false,
"preview": {
"title": "Create content attachments preview",
"description": "This preview adds support for creating content attachments.",
"toggled_by": "corsair-preview",
"toggled_on": [
"Mutation.createContentAttachment"
],
"owning_teams": [
"@github/feature-lifecycle"
],
"accept_header": "application/vnd.github.corsair-preview+json",
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
},
"inputFields": [
{
"name": "input",
"type": "CreateContentAttachmentInput!",
"id": "createcontentattachmentinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#createcontentattachmentinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "contentAttachment",
"type": "ContentAttachment",
"id": "contentattachment",
"kind": "objects",
"href": "/graphql/reference/objects#contentattachment",
"description": "<p>The newly created content attachment.</p>"
}
]
},
{
"name": "createDeployment",
"kind": "mutations",
@ -8373,6 +8325,56 @@
}
]
},
{
"name": "bypassPullRequestAllowances",
"description": "<p>A list of actors able to bypass PRs for this branch protection rule.</p>",
"type": "BypassPullRequestAllowanceConnection!",
"id": "bypasspullrequestallowanceconnection",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowanceconnection",
"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": "creator",
"description": "<p>The actor who created this branch protection rule.</p>",
@ -8844,6 +8846,104 @@
}
]
},
{
"name": "BypassPullRequestAllowance",
"kind": "objects",
"id": "bypasspullrequestallowance",
"href": "/graphql/reference/objects#bypasspullrequestallowance",
"description": "<p>A team or user who has the ability to bypass a pull request requirement on a protected branch.</p>",
"implements": [
{
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
}
],
"fields": [
{
"name": "actor",
"description": "<p>The actor that can dismiss.</p>",
"type": "BranchActorAllowanceActor",
"id": "branchactorallowanceactor",
"kind": "unions",
"href": "/graphql/reference/unions#branchactorallowanceactor"
},
{
"name": "branchProtectionRule",
"description": "<p>Identifies the branch protection rule associated with the allowed user or team.</p>",
"type": "BranchProtectionRule",
"id": "branchprotectionrule",
"kind": "objects",
"href": "/graphql/reference/objects#branchprotectionrule"
}
]
},
{
"name": "BypassPullRequestAllowanceConnection",
"kind": "objects",
"id": "bypasspullrequestallowanceconnection",
"href": "/graphql/reference/objects#bypasspullrequestallowanceconnection",
"description": "<p>The connection type for BypassPullRequestAllowance.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[BypassPullRequestAllowanceEdge]",
"id": "bypasspullrequestallowanceedge",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowanceedge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[BypassPullRequestAllowance]",
"id": "bypasspullrequestallowance",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowance"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "BypassPullRequestAllowanceEdge",
"kind": "objects",
"id": "bypasspullrequestallowanceedge",
"href": "/graphql/reference/objects#bypasspullrequestallowanceedge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "BypassPullRequestAllowance",
"id": "bypasspullrequestallowance",
"kind": "objects",
"href": "/graphql/reference/objects#bypasspullrequestallowance"
}
]
},
{
"name": "CVSS",
"kind": "objects",
@ -11841,72 +11941,6 @@
}
]
},
{
"name": "ContentAttachment",
"kind": "objects",
"id": "contentattachment",
"href": "/graphql/reference/objects#contentattachment",
"description": "<p>A content attachment.</p>",
"fields": [
{
"name": "body",
"description": "<p>The body text of the content attachment. This parameter supports markdown.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "contentReference",
"description": "<p>The content reference that the content attachment is attached to.</p>",
"type": "ContentReference!",
"id": "contentreference",
"kind": "objects",
"href": "/graphql/reference/objects#contentreference"
},
{
"name": "databaseId",
"description": "<p>Identifies the primary key from the database.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "title",
"description": "<p>The title of the content attachment.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "ContentReference",
"kind": "objects",
"id": "contentreference",
"href": "/graphql/reference/objects#contentreference",
"description": "<p>A content reference.</p>",
"fields": [
{
"name": "databaseId",
"description": "<p>Identifies the primary key from the database.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "reference",
"description": "<p>The reference of the content reference.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "ContributionCalendar",
"kind": "objects",
@ -69937,6 +69971,25 @@
}
]
},
{
"name": "BranchActorAllowanceActor",
"kind": "unions",
"id": "branchactorallowanceactor",
"href": "/graphql/reference/unions#branchactorallowanceactor",
"description": "<p>Types which can be actors for <code>BranchActorAllowance</code> objects.</p>",
"possibleTypes": [
{
"name": "Team",
"id": "team",
"href": "/graphql/reference/objects#team"
},
{
"name": "User",
"id": "user",
"href": "/graphql/reference/objects#user"
}
]
},
{
"name": "Closer",
"kind": "unions",
@ -73192,6 +73245,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "bypassPullRequestActorIds",
"description": "<p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
@ -73536,48 +73597,6 @@
}
]
},
{
"name": "CreateContentAttachmentInput",
"kind": "inputObjects",
"id": "createcontentattachmentinput",
"href": "/graphql/reference/input-objects#createcontentattachmentinput",
"description": "<p>Autogenerated input type of CreateContentAttachment.</p>",
"inputFields": [
{
"name": "body",
"description": "<p>The body of the content attachment, which may contain markdown.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "contentReferenceId",
"description": "<p>The node ID of the content_reference.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "title",
"description": "<p>The title of the content attachment.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "CreateDeploymentInput",
"kind": "inputObjects",
@ -78439,6 +78458,14 @@
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "bypassPullRequestActorIds",
"description": "<p>A list of User or Team IDs allowed to bypass pull requests targeting matching branches.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",