Merge pull request #25029 from github/graphql-schema-update
GraphQL schema update
This commit is contained in:
@@ -14388,11 +14388,18 @@ input IssueFilters {
|
||||
|
||||
"""
|
||||
List issues by given milestone argument. If an string representation of an
|
||||
integer is passed, it should refer to a milestone by its number field. Pass in
|
||||
integer is passed, it should refer to a milestone by its database ID. Pass in
|
||||
`null` for issues with no milestone, and `*` for issues that are assigned to any milestone.
|
||||
"""
|
||||
milestone: String
|
||||
|
||||
"""
|
||||
List issues by given milestone argument. If an string representation of an
|
||||
integer is passed, it should refer to a milestone by its number field. Pass in
|
||||
`null` for issues with no milestone, and `*` for issues that are assigned to any milestone.
|
||||
"""
|
||||
milestoneNumber: String
|
||||
|
||||
"""
|
||||
List issues that have been updated at or after the given date.
|
||||
"""
|
||||
@@ -24708,6 +24715,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
||||
Ordering options for issues returned from the connection
|
||||
"""
|
||||
orderBy: IssueOrder
|
||||
|
||||
"""
|
||||
Return only manually linked Issues
|
||||
"""
|
||||
userLinkedOnly: Boolean = false
|
||||
): IssueConnection
|
||||
|
||||
"""
|
||||
@@ -31581,6 +31593,16 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
|
||||
"""
|
||||
codeOfConduct: CodeOfConduct
|
||||
|
||||
"""
|
||||
Information extracted from the repository's `CODEOWNERS` file.
|
||||
"""
|
||||
codeowners(
|
||||
"""
|
||||
The ref name used to return the associated `CODEOWNERS` file.
|
||||
"""
|
||||
refName: String
|
||||
): RepositoryCodeowners
|
||||
|
||||
"""
|
||||
A list of collaborators associated with the repository.
|
||||
"""
|
||||
@@ -32796,6 +32818,11 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Filter by the state of the alert
|
||||
"""
|
||||
states: [RepositoryVulnerabilityAlertState!]
|
||||
): RepositoryVulnerabilityAlertConnection
|
||||
|
||||
"""
|
||||
@@ -32870,6 +32897,56 @@ interface RepositoryAuditEntryData {
|
||||
repositoryUrl: URI
|
||||
}
|
||||
|
||||
"""
|
||||
Information extracted from a repository's `CODEOWNERS` file.
|
||||
"""
|
||||
type RepositoryCodeowners {
|
||||
"""
|
||||
Any problems that were encountered while parsing the `CODEOWNERS` file.
|
||||
"""
|
||||
errors: [RepositoryCodeownersError!]!
|
||||
}
|
||||
|
||||
"""
|
||||
An error in a `CODEOWNERS` file.
|
||||
"""
|
||||
type RepositoryCodeownersError {
|
||||
"""
|
||||
The column number where the error occurs.
|
||||
"""
|
||||
column: Int!
|
||||
|
||||
"""
|
||||
A short string describing the type of error.
|
||||
"""
|
||||
kind: String!
|
||||
|
||||
"""
|
||||
The line number where the error occurs.
|
||||
"""
|
||||
line: Int!
|
||||
|
||||
"""
|
||||
A complete description of the error, combining information from other fields.
|
||||
"""
|
||||
message: String!
|
||||
|
||||
"""
|
||||
The path to the file when the error occurs.
|
||||
"""
|
||||
path: String!
|
||||
|
||||
"""
|
||||
The content of the line where the error occurs.
|
||||
"""
|
||||
source: String!
|
||||
|
||||
"""
|
||||
A suggestion of how to fix the error.
|
||||
"""
|
||||
suggestion: String
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for User.
|
||||
"""
|
||||
@@ -34030,8 +34107,23 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
|
||||
The user who dismissed the alert
|
||||
"""
|
||||
dismisser: User
|
||||
|
||||
"""
|
||||
The reason the alert was marked as fixed.
|
||||
"""
|
||||
fixReason: String
|
||||
|
||||
"""
|
||||
When was the alert fixed?
|
||||
"""
|
||||
fixedAt: DateTime
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
Identifies the alert number.
|
||||
"""
|
||||
number: Int!
|
||||
|
||||
"""
|
||||
The associated repository
|
||||
"""
|
||||
@@ -34047,6 +34139,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
|
||||
"""
|
||||
securityVulnerability: SecurityVulnerability
|
||||
|
||||
"""
|
||||
Identifies the state of the alert.
|
||||
"""
|
||||
state: RepositoryVulnerabilityAlertState!
|
||||
|
||||
"""
|
||||
The vulnerable manifest filename
|
||||
"""
|
||||
@@ -34103,6 +34200,26 @@ type RepositoryVulnerabilityAlertEdge {
|
||||
node: RepositoryVulnerabilityAlert
|
||||
}
|
||||
|
||||
"""
|
||||
The possible states of an alert
|
||||
"""
|
||||
enum RepositoryVulnerabilityAlertState {
|
||||
"""
|
||||
An alert that has been manually closed by a user.
|
||||
"""
|
||||
DISMISSED
|
||||
|
||||
"""
|
||||
An alert that has been resolved by a code change.
|
||||
"""
|
||||
FIXED
|
||||
|
||||
"""
|
||||
An alert that is still open.
|
||||
"""
|
||||
OPEN
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of RequestReviews
|
||||
"""
|
||||
|
||||
@@ -15416,11 +15416,18 @@ input IssueFilters {
|
||||
|
||||
"""
|
||||
List issues by given milestone argument. If an string representation of an
|
||||
integer is passed, it should refer to a milestone by its number field. Pass in
|
||||
integer is passed, it should refer to a milestone by its database ID. Pass in
|
||||
`null` for issues with no milestone, and `*` for issues that are assigned to any milestone.
|
||||
"""
|
||||
milestone: String
|
||||
|
||||
"""
|
||||
List issues by given milestone argument. If an string representation of an
|
||||
integer is passed, it should refer to a milestone by its number field. Pass in
|
||||
`null` for issues with no milestone, and `*` for issues that are assigned to any milestone.
|
||||
"""
|
||||
milestoneNumber: String
|
||||
|
||||
"""
|
||||
List issues that have been updated at or after the given date.
|
||||
"""
|
||||
@@ -19891,6 +19898,16 @@ type Mutation {
|
||||
input: UpdateProjectColumnInput!
|
||||
): UpdateProjectColumnPayload
|
||||
|
||||
"""
|
||||
Updates an existing project (beta).
|
||||
"""
|
||||
updateProjectNext(
|
||||
"""
|
||||
Parameters for UpdateProjectNext
|
||||
"""
|
||||
input: UpdateProjectNextInput!
|
||||
): UpdateProjectNextPayload
|
||||
|
||||
"""
|
||||
Updates a field of an item from a Project.
|
||||
"""
|
||||
@@ -27085,6 +27102,31 @@ type ProjectNext implements Closable & Node & Updatable {
|
||||
"""
|
||||
public: Boolean!
|
||||
|
||||
"""
|
||||
The repositories the project is linked to.
|
||||
"""
|
||||
repositories(
|
||||
"""
|
||||
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
|
||||
): RepositoryConnection!
|
||||
|
||||
"""
|
||||
The HTTP path for this project
|
||||
"""
|
||||
@@ -27919,6 +27961,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
||||
Ordering options for issues returned from the connection
|
||||
"""
|
||||
orderBy: IssueOrder
|
||||
|
||||
"""
|
||||
Return only manually linked Issues
|
||||
"""
|
||||
userLinkedOnly: Boolean = false
|
||||
): IssueConnection
|
||||
|
||||
"""
|
||||
@@ -35212,6 +35259,16 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
|
||||
"""
|
||||
codeOfConduct: CodeOfConduct
|
||||
|
||||
"""
|
||||
Information extracted from the repository's `CODEOWNERS` file.
|
||||
"""
|
||||
codeowners(
|
||||
"""
|
||||
The ref name used to return the associated `CODEOWNERS` file.
|
||||
"""
|
||||
refName: String
|
||||
): RepositoryCodeowners
|
||||
|
||||
"""
|
||||
A list of collaborators associated with the repository.
|
||||
"""
|
||||
@@ -36077,6 +36134,16 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
|
||||
number: Int!
|
||||
): Project
|
||||
|
||||
"""
|
||||
Finds and returns the Project (beta) according to the provided Project (beta) number.
|
||||
"""
|
||||
projectNext(
|
||||
"""
|
||||
The ProjectNext number.
|
||||
"""
|
||||
number: Int!
|
||||
): ProjectNext
|
||||
|
||||
"""
|
||||
A list of projects under the owner.
|
||||
"""
|
||||
@@ -36117,6 +36184,41 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
|
||||
states: [ProjectState!]
|
||||
): ProjectConnection!
|
||||
|
||||
"""
|
||||
List of projects (beta) linked to this repository.
|
||||
"""
|
||||
projectsNext(
|
||||
"""
|
||||
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
|
||||
|
||||
"""
|
||||
A project (beta) to search for linked to the repo.
|
||||
"""
|
||||
query: String
|
||||
|
||||
"""
|
||||
How to order the returned project (beta) objects.
|
||||
"""
|
||||
sortBy: ProjectNextOrderField = TITLE
|
||||
): ProjectNextConnection!
|
||||
|
||||
"""
|
||||
The HTTP path listing the repository's projects
|
||||
"""
|
||||
@@ -36517,6 +36619,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Filter by the state of the alert
|
||||
"""
|
||||
states: [RepositoryVulnerabilityAlertState!]
|
||||
): RepositoryVulnerabilityAlertConnection
|
||||
|
||||
"""
|
||||
@@ -36591,6 +36698,56 @@ interface RepositoryAuditEntryData {
|
||||
repositoryUrl: URI
|
||||
}
|
||||
|
||||
"""
|
||||
Information extracted from a repository's `CODEOWNERS` file.
|
||||
"""
|
||||
type RepositoryCodeowners {
|
||||
"""
|
||||
Any problems that were encountered while parsing the `CODEOWNERS` file.
|
||||
"""
|
||||
errors: [RepositoryCodeownersError!]!
|
||||
}
|
||||
|
||||
"""
|
||||
An error in a `CODEOWNERS` file.
|
||||
"""
|
||||
type RepositoryCodeownersError {
|
||||
"""
|
||||
The column number where the error occurs.
|
||||
"""
|
||||
column: Int!
|
||||
|
||||
"""
|
||||
A short string describing the type of error.
|
||||
"""
|
||||
kind: String!
|
||||
|
||||
"""
|
||||
The line number where the error occurs.
|
||||
"""
|
||||
line: Int!
|
||||
|
||||
"""
|
||||
A complete description of the error, combining information from other fields.
|
||||
"""
|
||||
message: String!
|
||||
|
||||
"""
|
||||
The path to the file when the error occurs.
|
||||
"""
|
||||
path: String!
|
||||
|
||||
"""
|
||||
The content of the line where the error occurs.
|
||||
"""
|
||||
source: String!
|
||||
|
||||
"""
|
||||
A suggestion of how to fix the error.
|
||||
"""
|
||||
suggestion: String
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for User.
|
||||
"""
|
||||
@@ -37841,8 +37998,23 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
|
||||
The user who dismissed the alert
|
||||
"""
|
||||
dismisser: User
|
||||
|
||||
"""
|
||||
The reason the alert was marked as fixed.
|
||||
"""
|
||||
fixReason: String
|
||||
|
||||
"""
|
||||
When was the alert fixed?
|
||||
"""
|
||||
fixedAt: DateTime
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
Identifies the alert number.
|
||||
"""
|
||||
number: Int!
|
||||
|
||||
"""
|
||||
The associated repository
|
||||
"""
|
||||
@@ -37858,6 +38030,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
|
||||
"""
|
||||
securityVulnerability: SecurityVulnerability
|
||||
|
||||
"""
|
||||
Identifies the state of the alert.
|
||||
"""
|
||||
state: RepositoryVulnerabilityAlertState!
|
||||
|
||||
"""
|
||||
The vulnerable manifest filename
|
||||
"""
|
||||
@@ -37914,6 +38091,26 @@ type RepositoryVulnerabilityAlertEdge {
|
||||
node: RepositoryVulnerabilityAlert
|
||||
}
|
||||
|
||||
"""
|
||||
The possible states of an alert
|
||||
"""
|
||||
enum RepositoryVulnerabilityAlertState {
|
||||
"""
|
||||
An alert that has been manually closed by a user.
|
||||
"""
|
||||
DISMISSED
|
||||
|
||||
"""
|
||||
An alert that has been resolved by a code change.
|
||||
"""
|
||||
FIXED
|
||||
|
||||
"""
|
||||
An alert that is still open.
|
||||
"""
|
||||
OPEN
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of RequestReviews
|
||||
"""
|
||||
@@ -45740,6 +45937,46 @@ input UpdateProjectInput {
|
||||
state: ProjectState
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdateProjectNext
|
||||
"""
|
||||
input UpdateProjectNextInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
Set the project to closed or open.
|
||||
"""
|
||||
closed: Boolean
|
||||
|
||||
"""
|
||||
Set the readme description of the project.
|
||||
"""
|
||||
description: String
|
||||
|
||||
"""
|
||||
The ID of the Project to update.
|
||||
"""
|
||||
projectId: ID! @possibleTypes(concreteTypes: ["ProjectNext"])
|
||||
|
||||
"""
|
||||
Set the project to public or private.
|
||||
"""
|
||||
public: Boolean
|
||||
|
||||
"""
|
||||
Set the short description of the project.
|
||||
"""
|
||||
shortDescription: String
|
||||
|
||||
"""
|
||||
Set the title of the project.
|
||||
"""
|
||||
title: String
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdateProjectNextItemField
|
||||
"""
|
||||
@@ -45785,6 +46022,21 @@ type UpdateProjectNextItemFieldPayload {
|
||||
projectNextItem: ProjectNextItem
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UpdateProjectNext
|
||||
"""
|
||||
type UpdateProjectNextPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The updated Project.
|
||||
"""
|
||||
projectNext: ProjectNext
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UpdateProject
|
||||
"""
|
||||
|
||||
@@ -15416,11 +15416,18 @@ input IssueFilters {
|
||||
|
||||
"""
|
||||
List issues by given milestone argument. If an string representation of an
|
||||
integer is passed, it should refer to a milestone by its number field. Pass in
|
||||
integer is passed, it should refer to a milestone by its database ID. Pass in
|
||||
`null` for issues with no milestone, and `*` for issues that are assigned to any milestone.
|
||||
"""
|
||||
milestone: String
|
||||
|
||||
"""
|
||||
List issues by given milestone argument. If an string representation of an
|
||||
integer is passed, it should refer to a milestone by its number field. Pass in
|
||||
`null` for issues with no milestone, and `*` for issues that are assigned to any milestone.
|
||||
"""
|
||||
milestoneNumber: String
|
||||
|
||||
"""
|
||||
List issues that have been updated at or after the given date.
|
||||
"""
|
||||
@@ -19891,6 +19898,16 @@ type Mutation {
|
||||
input: UpdateProjectColumnInput!
|
||||
): UpdateProjectColumnPayload
|
||||
|
||||
"""
|
||||
Updates an existing project (beta).
|
||||
"""
|
||||
updateProjectNext(
|
||||
"""
|
||||
Parameters for UpdateProjectNext
|
||||
"""
|
||||
input: UpdateProjectNextInput!
|
||||
): UpdateProjectNextPayload
|
||||
|
||||
"""
|
||||
Updates a field of an item from a Project.
|
||||
"""
|
||||
@@ -27085,6 +27102,31 @@ type ProjectNext implements Closable & Node & Updatable {
|
||||
"""
|
||||
public: Boolean!
|
||||
|
||||
"""
|
||||
The repositories the project is linked to.
|
||||
"""
|
||||
repositories(
|
||||
"""
|
||||
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
|
||||
): RepositoryConnection!
|
||||
|
||||
"""
|
||||
The HTTP path for this project
|
||||
"""
|
||||
@@ -27919,6 +27961,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
||||
Ordering options for issues returned from the connection
|
||||
"""
|
||||
orderBy: IssueOrder
|
||||
|
||||
"""
|
||||
Return only manually linked Issues
|
||||
"""
|
||||
userLinkedOnly: Boolean = false
|
||||
): IssueConnection
|
||||
|
||||
"""
|
||||
@@ -35212,6 +35259,16 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
|
||||
"""
|
||||
codeOfConduct: CodeOfConduct
|
||||
|
||||
"""
|
||||
Information extracted from the repository's `CODEOWNERS` file.
|
||||
"""
|
||||
codeowners(
|
||||
"""
|
||||
The ref name used to return the associated `CODEOWNERS` file.
|
||||
"""
|
||||
refName: String
|
||||
): RepositoryCodeowners
|
||||
|
||||
"""
|
||||
A list of collaborators associated with the repository.
|
||||
"""
|
||||
@@ -36077,6 +36134,16 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
|
||||
number: Int!
|
||||
): Project
|
||||
|
||||
"""
|
||||
Finds and returns the Project (beta) according to the provided Project (beta) number.
|
||||
"""
|
||||
projectNext(
|
||||
"""
|
||||
The ProjectNext number.
|
||||
"""
|
||||
number: Int!
|
||||
): ProjectNext
|
||||
|
||||
"""
|
||||
A list of projects under the owner.
|
||||
"""
|
||||
@@ -36117,6 +36184,41 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
|
||||
states: [ProjectState!]
|
||||
): ProjectConnection!
|
||||
|
||||
"""
|
||||
List of projects (beta) linked to this repository.
|
||||
"""
|
||||
projectsNext(
|
||||
"""
|
||||
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
|
||||
|
||||
"""
|
||||
A project (beta) to search for linked to the repo.
|
||||
"""
|
||||
query: String
|
||||
|
||||
"""
|
||||
How to order the returned project (beta) objects.
|
||||
"""
|
||||
sortBy: ProjectNextOrderField = TITLE
|
||||
): ProjectNextConnection!
|
||||
|
||||
"""
|
||||
The HTTP path listing the repository's projects
|
||||
"""
|
||||
@@ -36517,6 +36619,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Filter by the state of the alert
|
||||
"""
|
||||
states: [RepositoryVulnerabilityAlertState!]
|
||||
): RepositoryVulnerabilityAlertConnection
|
||||
|
||||
"""
|
||||
@@ -36591,6 +36698,56 @@ interface RepositoryAuditEntryData {
|
||||
repositoryUrl: URI
|
||||
}
|
||||
|
||||
"""
|
||||
Information extracted from a repository's `CODEOWNERS` file.
|
||||
"""
|
||||
type RepositoryCodeowners {
|
||||
"""
|
||||
Any problems that were encountered while parsing the `CODEOWNERS` file.
|
||||
"""
|
||||
errors: [RepositoryCodeownersError!]!
|
||||
}
|
||||
|
||||
"""
|
||||
An error in a `CODEOWNERS` file.
|
||||
"""
|
||||
type RepositoryCodeownersError {
|
||||
"""
|
||||
The column number where the error occurs.
|
||||
"""
|
||||
column: Int!
|
||||
|
||||
"""
|
||||
A short string describing the type of error.
|
||||
"""
|
||||
kind: String!
|
||||
|
||||
"""
|
||||
The line number where the error occurs.
|
||||
"""
|
||||
line: Int!
|
||||
|
||||
"""
|
||||
A complete description of the error, combining information from other fields.
|
||||
"""
|
||||
message: String!
|
||||
|
||||
"""
|
||||
The path to the file when the error occurs.
|
||||
"""
|
||||
path: String!
|
||||
|
||||
"""
|
||||
The content of the line where the error occurs.
|
||||
"""
|
||||
source: String!
|
||||
|
||||
"""
|
||||
A suggestion of how to fix the error.
|
||||
"""
|
||||
suggestion: String
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for User.
|
||||
"""
|
||||
@@ -37841,8 +37998,23 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
|
||||
The user who dismissed the alert
|
||||
"""
|
||||
dismisser: User
|
||||
|
||||
"""
|
||||
The reason the alert was marked as fixed.
|
||||
"""
|
||||
fixReason: String
|
||||
|
||||
"""
|
||||
When was the alert fixed?
|
||||
"""
|
||||
fixedAt: DateTime
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
Identifies the alert number.
|
||||
"""
|
||||
number: Int!
|
||||
|
||||
"""
|
||||
The associated repository
|
||||
"""
|
||||
@@ -37858,6 +38030,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
|
||||
"""
|
||||
securityVulnerability: SecurityVulnerability
|
||||
|
||||
"""
|
||||
Identifies the state of the alert.
|
||||
"""
|
||||
state: RepositoryVulnerabilityAlertState!
|
||||
|
||||
"""
|
||||
The vulnerable manifest filename
|
||||
"""
|
||||
@@ -37914,6 +38091,26 @@ type RepositoryVulnerabilityAlertEdge {
|
||||
node: RepositoryVulnerabilityAlert
|
||||
}
|
||||
|
||||
"""
|
||||
The possible states of an alert
|
||||
"""
|
||||
enum RepositoryVulnerabilityAlertState {
|
||||
"""
|
||||
An alert that has been manually closed by a user.
|
||||
"""
|
||||
DISMISSED
|
||||
|
||||
"""
|
||||
An alert that has been resolved by a code change.
|
||||
"""
|
||||
FIXED
|
||||
|
||||
"""
|
||||
An alert that is still open.
|
||||
"""
|
||||
OPEN
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of RequestReviews
|
||||
"""
|
||||
@@ -45740,6 +45937,46 @@ input UpdateProjectInput {
|
||||
state: ProjectState
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdateProjectNext
|
||||
"""
|
||||
input UpdateProjectNextInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
Set the project to closed or open.
|
||||
"""
|
||||
closed: Boolean
|
||||
|
||||
"""
|
||||
Set the readme description of the project.
|
||||
"""
|
||||
description: String
|
||||
|
||||
"""
|
||||
The ID of the Project to update.
|
||||
"""
|
||||
projectId: ID! @possibleTypes(concreteTypes: ["ProjectNext"])
|
||||
|
||||
"""
|
||||
Set the project to public or private.
|
||||
"""
|
||||
public: Boolean
|
||||
|
||||
"""
|
||||
Set the short description of the project.
|
||||
"""
|
||||
shortDescription: String
|
||||
|
||||
"""
|
||||
Set the title of the project.
|
||||
"""
|
||||
title: String
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdateProjectNextItemField
|
||||
"""
|
||||
@@ -45785,6 +46022,21 @@ type UpdateProjectNextItemFieldPayload {
|
||||
projectNextItem: ProjectNextItem
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UpdateProjectNext
|
||||
"""
|
||||
type UpdateProjectNextPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The updated Project.
|
||||
"""
|
||||
projectNext: ProjectNext
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UpdateProject
|
||||
"""
|
||||
|
||||
@@ -1,4 +1,33 @@
|
||||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"Type `RepositoryCodeowners` was added",
|
||||
"Type `RepositoryCodeownersError` was added",
|
||||
"Type `RepositoryVulnerabilityAlertState` was added",
|
||||
"Type `UpdateProjectNextInput` was added",
|
||||
"Type `UpdateProjectNextPayload` was added",
|
||||
"Input field `milestoneNumber` was added to input object type `IssueFilters`",
|
||||
"Field `updateProjectNext` was added to object type `Mutation`",
|
||||
"Field `repositories` was added to object type `ProjectNext`",
|
||||
"Argument `userLinkedOnly: Boolean` added to field `PullRequest.closingIssuesReferences`",
|
||||
"Field `codeowners` was added to object type `Repository`",
|
||||
"Field `projectNext` was added to object type `Repository`",
|
||||
"Field `projectsNext` was added to object type `Repository`",
|
||||
"Argument 'states: [RepositoryVulnerabilityAlertState!]` added to field `Repository.vulnerabilityAlerts'",
|
||||
"Field `fixReason` was added to object type `RepositoryVulnerabilityAlert`",
|
||||
"Field `fixedAt` was added to object type `RepositoryVulnerabilityAlert`",
|
||||
"Field `number` was added to object type `RepositoryVulnerabilityAlert`",
|
||||
"Field `state` was added to object type `RepositoryVulnerabilityAlert`"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [],
|
||||
"date": "2022-02-16"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -6792,6 +6792,40 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updateProjectNext",
|
||||
"kind": "mutations",
|
||||
"id": "updateprojectnext",
|
||||
"href": "/graphql/reference/mutations#updateprojectnext",
|
||||
"description": "<p>Updates an existing project (beta).</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "UpdateProjectNextInput!",
|
||||
"id": "updateprojectnextinput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#updateprojectnextinput"
|
||||
}
|
||||
],
|
||||
"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": "projectNext",
|
||||
"type": "ProjectNext",
|
||||
"id": "projectnext",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectnext",
|
||||
"description": "<p>The updated Project.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updateProjectNextItemField",
|
||||
"kind": "mutations",
|
||||
@@ -39076,6 +39110,56 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "repositories",
|
||||
"description": "<p>The repositories the project is linked to.</p>",
|
||||
"type": "RepositoryConnection!",
|
||||
"id": "repositoryconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#repositoryconnection",
|
||||
"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": "resourcePath",
|
||||
"description": "<p>The HTTP path for this project.</p>",
|
||||
@@ -40184,6 +40268,17 @@
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#issueorder"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "userLinkedOnly",
|
||||
"defaultValue": false,
|
||||
"description": "<p>Return only manually linked Issues.</p>",
|
||||
"type": {
|
||||
"name": "Boolean",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -49802,6 +49897,26 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#codeofconduct"
|
||||
},
|
||||
{
|
||||
"name": "codeowners",
|
||||
"description": "<p>Information extracted from the repository's <code>CODEOWNERS</code> file.</p>",
|
||||
"type": "RepositoryCodeowners",
|
||||
"id": "repositorycodeowners",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#repositorycodeowners",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "refName",
|
||||
"description": "<p>The ref name used to return the associated <code>CODEOWNERS</code> file.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "collaborators",
|
||||
"description": "<p>A list of collaborators associated with the repository.</p>",
|
||||
@@ -51464,6 +51579,26 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "projectNext",
|
||||
"description": "<p>Finds and returns the Project (beta) according to the provided Project (beta) number.</p>",
|
||||
"type": "ProjectNext",
|
||||
"id": "projectnext",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectnext",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "number",
|
||||
"description": "<p>The ProjectNext number.</p>",
|
||||
"type": {
|
||||
"name": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "projects",
|
||||
"description": "<p>A list of projects under the owner.</p>",
|
||||
@@ -51544,6 +51679,77 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "projectsNext",
|
||||
"description": "<p>List of projects (beta) linked to this repository.</p>",
|
||||
"type": "ProjectNextConnection!",
|
||||
"id": "projectnextconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectnextconnection",
|
||||
"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": "query",
|
||||
"description": "<p>A project (beta) to search for linked to the repo.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "sortBy",
|
||||
"defaultValue": "TITLE",
|
||||
"description": "<p>How to order the returned project (beta) objects.</p>",
|
||||
"type": {
|
||||
"name": "ProjectNextOrderField",
|
||||
"id": "projectnextorderfield",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#projectnextorderfield"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "projectsResourcePath",
|
||||
"description": "<p>The HTTP path listing the repository's projects.</p>",
|
||||
@@ -52290,6 +52496,16 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "states",
|
||||
"description": "<p>Filter by the state of the alert.</p>",
|
||||
"type": {
|
||||
"name": "[RepositoryVulnerabilityAlertState!]",
|
||||
"id": "repositoryvulnerabilityalertstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#repositoryvulnerabilityalertstate"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -52345,6 +52561,88 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryCodeowners",
|
||||
"kind": "objects",
|
||||
"id": "repositorycodeowners",
|
||||
"href": "/graphql/reference/objects#repositorycodeowners",
|
||||
"description": "<p>Information extracted from a repository's <code>CODEOWNERS</code> file.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "errors",
|
||||
"description": "<p>Any problems that were encountered while parsing the <code>CODEOWNERS</code> file.</p>",
|
||||
"type": "[RepositoryCodeownersError!]!",
|
||||
"id": "repositorycodeownerserror",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#repositorycodeownerserror"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryCodeownersError",
|
||||
"kind": "objects",
|
||||
"id": "repositorycodeownerserror",
|
||||
"href": "/graphql/reference/objects#repositorycodeownerserror",
|
||||
"description": "<p>An error in a <code>CODEOWNERS</code> file.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "column",
|
||||
"description": "<p>The column number where the error occurs.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "kind",
|
||||
"description": "<p>A short string describing the type of error.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "line",
|
||||
"description": "<p>The line number where the error occurs.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "message",
|
||||
"description": "<p>A complete description of the error, combining information from other fields.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "path",
|
||||
"description": "<p>The path to the file when the error occurs.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "source",
|
||||
"description": "<p>The content of the line where the error occurs.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "suggestion",
|
||||
"description": "<p>A suggestion of how to fix the error.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryCollaboratorConnection",
|
||||
"kind": "objects",
|
||||
@@ -53368,6 +53666,30 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#user"
|
||||
},
|
||||
{
|
||||
"name": "fixReason",
|
||||
"description": "<p>The reason the alert was marked as fixed.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "fixedAt",
|
||||
"description": "<p>When was the alert fixed?.</p>",
|
||||
"type": "DateTime",
|
||||
"id": "datetime",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#datetime"
|
||||
},
|
||||
{
|
||||
"name": "number",
|
||||
"description": "<p>Identifies the alert number.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "repository",
|
||||
"description": "<p>The associated repository.</p>",
|
||||
@@ -53392,6 +53714,14 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#securityvulnerability"
|
||||
},
|
||||
{
|
||||
"name": "state",
|
||||
"description": "<p>Identifies the state of the alert.</p>",
|
||||
"type": "RepositoryVulnerabilityAlertState!",
|
||||
"id": "repositoryvulnerabilityalertstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#repositoryvulnerabilityalertstate"
|
||||
},
|
||||
{
|
||||
"name": "vulnerableManifestFilename",
|
||||
"description": "<p>The vulnerable manifest filename.</p>",
|
||||
@@ -70775,6 +71105,27 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryVulnerabilityAlertState",
|
||||
"kind": "enums",
|
||||
"id": "repositoryvulnerabilityalertstate",
|
||||
"href": "/graphql/reference/enums#repositoryvulnerabilityalertstate",
|
||||
"description": "<p>The possible states of an alert.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "DISMISSED",
|
||||
"description": "<p>An alert that has been manually closed by a user.</p>"
|
||||
},
|
||||
{
|
||||
"name": "FIXED",
|
||||
"description": "<p>An alert that has been resolved by a code change.</p>"
|
||||
},
|
||||
{
|
||||
"name": "OPEN",
|
||||
"description": "<p>An alert that is still open.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RequestableCheckStatusState",
|
||||
"kind": "enums",
|
||||
@@ -77736,6 +78087,14 @@
|
||||
},
|
||||
{
|
||||
"name": "milestone",
|
||||
"description": "<p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its database ID. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "milestoneNumber",
|
||||
"description": "<p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
@@ -82063,6 +82422,72 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdateProjectNextInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "updateprojectnextinput",
|
||||
"href": "/graphql/reference/input-objects#updateprojectnextinput",
|
||||
"description": "<p>Autogenerated input type of UpdateProjectNext.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"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": "closed",
|
||||
"description": "<p>Set the project to closed or open.</p>",
|
||||
"type": "Boolean",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "description",
|
||||
"description": "<p>Set the readme description of the project.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "projectId",
|
||||
"description": "<p>The ID of the Project to update.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "public",
|
||||
"description": "<p>Set the project to public or private.</p>",
|
||||
"type": "Boolean",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "shortDescription",
|
||||
"description": "<p>Set the short description of the project.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "title",
|
||||
"description": "<p>Set the title of the project.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdateProjectNextItemFieldInput",
|
||||
"kind": "inputObjects",
|
||||
|
||||
@@ -35134,6 +35134,17 @@
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#issueorder"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "userLinkedOnly",
|
||||
"defaultValue": false,
|
||||
"description": "<p>Return only manually linked Issues.</p>",
|
||||
"type": {
|
||||
"name": "Boolean",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -44595,6 +44606,26 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#codeofconduct"
|
||||
},
|
||||
{
|
||||
"name": "codeowners",
|
||||
"description": "<p>Information extracted from the repository's <code>CODEOWNERS</code> file.</p>",
|
||||
"type": "RepositoryCodeowners",
|
||||
"id": "repositorycodeowners",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#repositorycodeowners",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "refName",
|
||||
"description": "<p>The ref name used to return the associated <code>CODEOWNERS</code> file.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "collaborators",
|
||||
"description": "<p>A list of collaborators associated with the repository.</p>",
|
||||
@@ -46884,6 +46915,16 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "states",
|
||||
"description": "<p>Filter by the state of the alert.</p>",
|
||||
"type": {
|
||||
"name": "[RepositoryVulnerabilityAlertState!]",
|
||||
"id": "repositoryvulnerabilityalertstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#repositoryvulnerabilityalertstate"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -46939,6 +46980,88 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryCodeowners",
|
||||
"kind": "objects",
|
||||
"id": "repositorycodeowners",
|
||||
"href": "/graphql/reference/objects#repositorycodeowners",
|
||||
"description": "<p>Information extracted from a repository's <code>CODEOWNERS</code> file.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "errors",
|
||||
"description": "<p>Any problems that were encountered while parsing the <code>CODEOWNERS</code> file.</p>",
|
||||
"type": "[RepositoryCodeownersError!]!",
|
||||
"id": "repositorycodeownerserror",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#repositorycodeownerserror"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryCodeownersError",
|
||||
"kind": "objects",
|
||||
"id": "repositorycodeownerserror",
|
||||
"href": "/graphql/reference/objects#repositorycodeownerserror",
|
||||
"description": "<p>An error in a <code>CODEOWNERS</code> file.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "column",
|
||||
"description": "<p>The column number where the error occurs.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "kind",
|
||||
"description": "<p>A short string describing the type of error.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "line",
|
||||
"description": "<p>The line number where the error occurs.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "message",
|
||||
"description": "<p>A complete description of the error, combining information from other fields.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "path",
|
||||
"description": "<p>The path to the file when the error occurs.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "source",
|
||||
"description": "<p>The content of the line where the error occurs.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "suggestion",
|
||||
"description": "<p>A suggestion of how to fix the error.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryCollaboratorConnection",
|
||||
"kind": "objects",
|
||||
@@ -47929,6 +48052,30 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#user"
|
||||
},
|
||||
{
|
||||
"name": "fixReason",
|
||||
"description": "<p>The reason the alert was marked as fixed.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "fixedAt",
|
||||
"description": "<p>When was the alert fixed?.</p>",
|
||||
"type": "DateTime",
|
||||
"id": "datetime",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#datetime"
|
||||
},
|
||||
{
|
||||
"name": "number",
|
||||
"description": "<p>Identifies the alert number.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "repository",
|
||||
"description": "<p>The associated repository.</p>",
|
||||
@@ -47953,6 +48100,14 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#securityvulnerability"
|
||||
},
|
||||
{
|
||||
"name": "state",
|
||||
"description": "<p>Identifies the state of the alert.</p>",
|
||||
"type": "RepositoryVulnerabilityAlertState!",
|
||||
"id": "repositoryvulnerabilityalertstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#repositoryvulnerabilityalertstate"
|
||||
},
|
||||
{
|
||||
"name": "vulnerableManifestFilename",
|
||||
"description": "<p>The vulnerable manifest filename.</p>",
|
||||
@@ -62432,6 +62587,27 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryVulnerabilityAlertState",
|
||||
"kind": "enums",
|
||||
"id": "repositoryvulnerabilityalertstate",
|
||||
"href": "/graphql/reference/enums#repositoryvulnerabilityalertstate",
|
||||
"description": "<p>The possible states of an alert.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "DISMISSED",
|
||||
"description": "<p>An alert that has been manually closed by a user.</p>"
|
||||
},
|
||||
{
|
||||
"name": "FIXED",
|
||||
"description": "<p>An alert that has been resolved by a code change.</p>"
|
||||
},
|
||||
{
|
||||
"name": "OPEN",
|
||||
"description": "<p>An alert that is still open.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RequestableCheckStatusState",
|
||||
"kind": "enums",
|
||||
@@ -68517,6 +68693,14 @@
|
||||
},
|
||||
{
|
||||
"name": "milestone",
|
||||
"description": "<p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its database ID. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "milestoneNumber",
|
||||
"description": "<p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
|
||||
@@ -6792,6 +6792,40 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updateProjectNext",
|
||||
"kind": "mutations",
|
||||
"id": "updateprojectnext",
|
||||
"href": "/graphql/reference/mutations#updateprojectnext",
|
||||
"description": "<p>Updates an existing project (beta).</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "UpdateProjectNextInput!",
|
||||
"id": "updateprojectnextinput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#updateprojectnextinput"
|
||||
}
|
||||
],
|
||||
"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": "projectNext",
|
||||
"type": "ProjectNext",
|
||||
"id": "projectnext",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectnext",
|
||||
"description": "<p>The updated Project.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updateProjectNextItemField",
|
||||
"kind": "mutations",
|
||||
@@ -39076,6 +39110,56 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "repositories",
|
||||
"description": "<p>The repositories the project is linked to.</p>",
|
||||
"type": "RepositoryConnection!",
|
||||
"id": "repositoryconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#repositoryconnection",
|
||||
"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": "resourcePath",
|
||||
"description": "<p>The HTTP path for this project.</p>",
|
||||
@@ -40184,6 +40268,17 @@
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#issueorder"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "userLinkedOnly",
|
||||
"defaultValue": false,
|
||||
"description": "<p>Return only manually linked Issues.</p>",
|
||||
"type": {
|
||||
"name": "Boolean",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -49802,6 +49897,26 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#codeofconduct"
|
||||
},
|
||||
{
|
||||
"name": "codeowners",
|
||||
"description": "<p>Information extracted from the repository's <code>CODEOWNERS</code> file.</p>",
|
||||
"type": "RepositoryCodeowners",
|
||||
"id": "repositorycodeowners",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#repositorycodeowners",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "refName",
|
||||
"description": "<p>The ref name used to return the associated <code>CODEOWNERS</code> file.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "collaborators",
|
||||
"description": "<p>A list of collaborators associated with the repository.</p>",
|
||||
@@ -51464,6 +51579,26 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "projectNext",
|
||||
"description": "<p>Finds and returns the Project (beta) according to the provided Project (beta) number.</p>",
|
||||
"type": "ProjectNext",
|
||||
"id": "projectnext",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectnext",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "number",
|
||||
"description": "<p>The ProjectNext number.</p>",
|
||||
"type": {
|
||||
"name": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "projects",
|
||||
"description": "<p>A list of projects under the owner.</p>",
|
||||
@@ -51544,6 +51679,77 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "projectsNext",
|
||||
"description": "<p>List of projects (beta) linked to this repository.</p>",
|
||||
"type": "ProjectNextConnection!",
|
||||
"id": "projectnextconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectnextconnection",
|
||||
"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": "query",
|
||||
"description": "<p>A project (beta) to search for linked to the repo.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "sortBy",
|
||||
"defaultValue": "TITLE",
|
||||
"description": "<p>How to order the returned project (beta) objects.</p>",
|
||||
"type": {
|
||||
"name": "ProjectNextOrderField",
|
||||
"id": "projectnextorderfield",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#projectnextorderfield"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "projectsResourcePath",
|
||||
"description": "<p>The HTTP path listing the repository's projects.</p>",
|
||||
@@ -52290,6 +52496,16 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "states",
|
||||
"description": "<p>Filter by the state of the alert.</p>",
|
||||
"type": {
|
||||
"name": "[RepositoryVulnerabilityAlertState!]",
|
||||
"id": "repositoryvulnerabilityalertstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#repositoryvulnerabilityalertstate"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -52345,6 +52561,88 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryCodeowners",
|
||||
"kind": "objects",
|
||||
"id": "repositorycodeowners",
|
||||
"href": "/graphql/reference/objects#repositorycodeowners",
|
||||
"description": "<p>Information extracted from a repository's <code>CODEOWNERS</code> file.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "errors",
|
||||
"description": "<p>Any problems that were encountered while parsing the <code>CODEOWNERS</code> file.</p>",
|
||||
"type": "[RepositoryCodeownersError!]!",
|
||||
"id": "repositorycodeownerserror",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#repositorycodeownerserror"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryCodeownersError",
|
||||
"kind": "objects",
|
||||
"id": "repositorycodeownerserror",
|
||||
"href": "/graphql/reference/objects#repositorycodeownerserror",
|
||||
"description": "<p>An error in a <code>CODEOWNERS</code> file.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "column",
|
||||
"description": "<p>The column number where the error occurs.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "kind",
|
||||
"description": "<p>A short string describing the type of error.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "line",
|
||||
"description": "<p>The line number where the error occurs.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "message",
|
||||
"description": "<p>A complete description of the error, combining information from other fields.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "path",
|
||||
"description": "<p>The path to the file when the error occurs.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "source",
|
||||
"description": "<p>The content of the line where the error occurs.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "suggestion",
|
||||
"description": "<p>A suggestion of how to fix the error.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryCollaboratorConnection",
|
||||
"kind": "objects",
|
||||
@@ -53368,6 +53666,30 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#user"
|
||||
},
|
||||
{
|
||||
"name": "fixReason",
|
||||
"description": "<p>The reason the alert was marked as fixed.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "fixedAt",
|
||||
"description": "<p>When was the alert fixed?.</p>",
|
||||
"type": "DateTime",
|
||||
"id": "datetime",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#datetime"
|
||||
},
|
||||
{
|
||||
"name": "number",
|
||||
"description": "<p>Identifies the alert number.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "repository",
|
||||
"description": "<p>The associated repository.</p>",
|
||||
@@ -53392,6 +53714,14 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#securityvulnerability"
|
||||
},
|
||||
{
|
||||
"name": "state",
|
||||
"description": "<p>Identifies the state of the alert.</p>",
|
||||
"type": "RepositoryVulnerabilityAlertState!",
|
||||
"id": "repositoryvulnerabilityalertstate",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#repositoryvulnerabilityalertstate"
|
||||
},
|
||||
{
|
||||
"name": "vulnerableManifestFilename",
|
||||
"description": "<p>The vulnerable manifest filename.</p>",
|
||||
@@ -70775,6 +71105,27 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RepositoryVulnerabilityAlertState",
|
||||
"kind": "enums",
|
||||
"id": "repositoryvulnerabilityalertstate",
|
||||
"href": "/graphql/reference/enums#repositoryvulnerabilityalertstate",
|
||||
"description": "<p>The possible states of an alert.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "DISMISSED",
|
||||
"description": "<p>An alert that has been manually closed by a user.</p>"
|
||||
},
|
||||
{
|
||||
"name": "FIXED",
|
||||
"description": "<p>An alert that has been resolved by a code change.</p>"
|
||||
},
|
||||
{
|
||||
"name": "OPEN",
|
||||
"description": "<p>An alert that is still open.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "RequestableCheckStatusState",
|
||||
"kind": "enums",
|
||||
@@ -77736,6 +78087,14 @@
|
||||
},
|
||||
{
|
||||
"name": "milestone",
|
||||
"description": "<p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its database ID. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "milestoneNumber",
|
||||
"description": "<p>List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\n<code>null</code> for issues with no milestone, and <code>*</code> for issues that are assigned to any milestone.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
@@ -82063,6 +82422,72 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdateProjectNextInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "updateprojectnextinput",
|
||||
"href": "/graphql/reference/input-objects#updateprojectnextinput",
|
||||
"description": "<p>Autogenerated input type of UpdateProjectNext.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"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": "closed",
|
||||
"description": "<p>Set the project to closed or open.</p>",
|
||||
"type": "Boolean",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "description",
|
||||
"description": "<p>Set the readme description of the project.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "projectId",
|
||||
"description": "<p>The ID of the Project to update.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "public",
|
||||
"description": "<p>Set the project to public or private.</p>",
|
||||
"type": "Boolean",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "shortDescription",
|
||||
"description": "<p>Set the short description of the project.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "title",
|
||||
"description": "<p>Set the title of the project.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdateProjectNextItemFieldInput",
|
||||
"kind": "inputObjects",
|
||||
|
||||
Reference in New Issue
Block a user