1
0
mirror of synced 2025-12-25 02:17:36 -05:00

Action ran graphql script"update-files"

This commit is contained in:
rsese
2021-12-03 23:56:42 +00:00
committed by GitHub
parent 1b00f1e33d
commit 45428fb910
13 changed files with 5649 additions and 5598 deletions

View File

@@ -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": [
{

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -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.",

View File

@@ -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>",

View File

@@ -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>",

View File

@@ -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>",