зеркало из https://github.com/github/docs.git
GraphQL schema update (#32547)
Co-authored-by: rachmari <rachmari@users.noreply.github.com>
This commit is contained in:
Родитель
f8ebfb5c3d
Коммит
bcfd944c60
|
@ -17704,6 +17704,41 @@ type LinkProjectV2ToRepositoryPayload {
|
|||
repository: Repository
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of LinkProjectV2ToTeam
|
||||
"""
|
||||
input LinkProjectV2ToTeamInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The ID of the project to link to the team.
|
||||
"""
|
||||
projectId: ID! @possibleTypes(concreteTypes: ["ProjectV2"])
|
||||
|
||||
"""
|
||||
The ID of the team to link to the project.
|
||||
"""
|
||||
teamId: ID! @possibleTypes(concreteTypes: ["Team"])
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of LinkProjectV2ToTeam
|
||||
"""
|
||||
type LinkProjectV2ToTeamPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The team the project is linked to
|
||||
"""
|
||||
team: Team
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of LinkRepositoryToProject
|
||||
"""
|
||||
|
@ -20699,6 +20734,16 @@ type Mutation {
|
|||
input: LinkProjectV2ToRepositoryInput!
|
||||
): LinkProjectV2ToRepositoryPayload
|
||||
|
||||
"""
|
||||
Links a project to a team.
|
||||
"""
|
||||
linkProjectV2ToTeam(
|
||||
"""
|
||||
Parameters for LinkProjectV2ToTeam
|
||||
"""
|
||||
input: LinkProjectV2ToTeamInput!
|
||||
): LinkProjectV2ToTeamPayload
|
||||
|
||||
"""
|
||||
Creates a repository link for a project.
|
||||
"""
|
||||
|
@ -21129,6 +21174,16 @@ type Mutation {
|
|||
input: UnlinkProjectV2FromRepositoryInput!
|
||||
): UnlinkProjectV2FromRepositoryPayload
|
||||
|
||||
"""
|
||||
Unlinks a project to a team.
|
||||
"""
|
||||
unlinkProjectV2FromTeam(
|
||||
"""
|
||||
Parameters for UnlinkProjectV2FromTeam
|
||||
"""
|
||||
input: UnlinkProjectV2FromTeamInput!
|
||||
): UnlinkProjectV2FromTeamPayload
|
||||
|
||||
"""
|
||||
Deletes a repository link from a project.
|
||||
"""
|
||||
|
@ -30600,6 +30655,16 @@ input ProjectV2FieldValue {
|
|||
text: String
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which to filter lists of projects.
|
||||
"""
|
||||
input ProjectV2Filters {
|
||||
"""
|
||||
List project v2 filtered by the state given.
|
||||
"""
|
||||
state: ProjectV2State
|
||||
}
|
||||
|
||||
"""
|
||||
An item within a Project.
|
||||
"""
|
||||
|
@ -31697,6 +31762,21 @@ type ProjectV2SortByFieldEdge {
|
|||
node: ProjectV2SortByField
|
||||
}
|
||||
|
||||
"""
|
||||
The possible states of a project v2.
|
||||
"""
|
||||
enum ProjectV2State {
|
||||
"""
|
||||
A project v2 that has been closed
|
||||
"""
|
||||
CLOSED
|
||||
|
||||
"""
|
||||
A project v2 that is still open
|
||||
"""
|
||||
OPEN
|
||||
}
|
||||
|
||||
"""
|
||||
A view within a ProjectV2.
|
||||
"""
|
||||
|
@ -47026,6 +47106,11 @@ type Team implements MemberStatusable & Node & Subscribable {
|
|||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Filtering options for projects returned from this connection
|
||||
"""
|
||||
filterBy: ProjectV2Filters = {}
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
|
@ -47040,6 +47125,11 @@ type Team implements MemberStatusable & Node & Subscribable {
|
|||
How to order the returned projects.
|
||||
"""
|
||||
orderBy: ProjectV2Order = {field: NUMBER, direction: DESC}
|
||||
|
||||
"""
|
||||
The query to search projects by.
|
||||
"""
|
||||
query: String = ""
|
||||
): ProjectV2Connection!
|
||||
|
||||
"""
|
||||
|
@ -49400,6 +49490,41 @@ type UnlinkProjectV2FromRepositoryPayload {
|
|||
repository: Repository
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UnlinkProjectV2FromTeam
|
||||
"""
|
||||
input UnlinkProjectV2FromTeamInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The ID of the project to unlink from the team.
|
||||
"""
|
||||
projectId: ID! @possibleTypes(concreteTypes: ["ProjectV2"])
|
||||
|
||||
"""
|
||||
The ID of the team to unlink from the project.
|
||||
"""
|
||||
teamId: ID! @possibleTypes(concreteTypes: ["Team"])
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UnlinkProjectV2FromTeam
|
||||
"""
|
||||
type UnlinkProjectV2FromTeamPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The team the project is unlinked from
|
||||
"""
|
||||
team: Team
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UnlinkRepositoryFromProject
|
||||
"""
|
||||
|
|
|
@ -17704,6 +17704,41 @@ type LinkProjectV2ToRepositoryPayload {
|
|||
repository: Repository
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of LinkProjectV2ToTeam
|
||||
"""
|
||||
input LinkProjectV2ToTeamInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The ID of the project to link to the team.
|
||||
"""
|
||||
projectId: ID! @possibleTypes(concreteTypes: ["ProjectV2"])
|
||||
|
||||
"""
|
||||
The ID of the team to link to the project.
|
||||
"""
|
||||
teamId: ID! @possibleTypes(concreteTypes: ["Team"])
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of LinkProjectV2ToTeam
|
||||
"""
|
||||
type LinkProjectV2ToTeamPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The team the project is linked to
|
||||
"""
|
||||
team: Team
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of LinkRepositoryToProject
|
||||
"""
|
||||
|
@ -20699,6 +20734,16 @@ type Mutation {
|
|||
input: LinkProjectV2ToRepositoryInput!
|
||||
): LinkProjectV2ToRepositoryPayload
|
||||
|
||||
"""
|
||||
Links a project to a team.
|
||||
"""
|
||||
linkProjectV2ToTeam(
|
||||
"""
|
||||
Parameters for LinkProjectV2ToTeam
|
||||
"""
|
||||
input: LinkProjectV2ToTeamInput!
|
||||
): LinkProjectV2ToTeamPayload
|
||||
|
||||
"""
|
||||
Creates a repository link for a project.
|
||||
"""
|
||||
|
@ -21129,6 +21174,16 @@ type Mutation {
|
|||
input: UnlinkProjectV2FromRepositoryInput!
|
||||
): UnlinkProjectV2FromRepositoryPayload
|
||||
|
||||
"""
|
||||
Unlinks a project to a team.
|
||||
"""
|
||||
unlinkProjectV2FromTeam(
|
||||
"""
|
||||
Parameters for UnlinkProjectV2FromTeam
|
||||
"""
|
||||
input: UnlinkProjectV2FromTeamInput!
|
||||
): UnlinkProjectV2FromTeamPayload
|
||||
|
||||
"""
|
||||
Deletes a repository link from a project.
|
||||
"""
|
||||
|
@ -30600,6 +30655,16 @@ input ProjectV2FieldValue {
|
|||
text: String
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which to filter lists of projects.
|
||||
"""
|
||||
input ProjectV2Filters {
|
||||
"""
|
||||
List project v2 filtered by the state given.
|
||||
"""
|
||||
state: ProjectV2State
|
||||
}
|
||||
|
||||
"""
|
||||
An item within a Project.
|
||||
"""
|
||||
|
@ -31697,6 +31762,21 @@ type ProjectV2SortByFieldEdge {
|
|||
node: ProjectV2SortByField
|
||||
}
|
||||
|
||||
"""
|
||||
The possible states of a project v2.
|
||||
"""
|
||||
enum ProjectV2State {
|
||||
"""
|
||||
A project v2 that has been closed
|
||||
"""
|
||||
CLOSED
|
||||
|
||||
"""
|
||||
A project v2 that is still open
|
||||
"""
|
||||
OPEN
|
||||
}
|
||||
|
||||
"""
|
||||
A view within a ProjectV2.
|
||||
"""
|
||||
|
@ -47026,6 +47106,11 @@ type Team implements MemberStatusable & Node & Subscribable {
|
|||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Filtering options for projects returned from this connection
|
||||
"""
|
||||
filterBy: ProjectV2Filters = {}
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
|
@ -47040,6 +47125,11 @@ type Team implements MemberStatusable & Node & Subscribable {
|
|||
How to order the returned projects.
|
||||
"""
|
||||
orderBy: ProjectV2Order = {field: NUMBER, direction: DESC}
|
||||
|
||||
"""
|
||||
The query to search projects by.
|
||||
"""
|
||||
query: String = ""
|
||||
): ProjectV2Connection!
|
||||
|
||||
"""
|
||||
|
@ -49400,6 +49490,41 @@ type UnlinkProjectV2FromRepositoryPayload {
|
|||
repository: Repository
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UnlinkProjectV2FromTeam
|
||||
"""
|
||||
input UnlinkProjectV2FromTeamInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The ID of the project to unlink from the team.
|
||||
"""
|
||||
projectId: ID! @possibleTypes(concreteTypes: ["ProjectV2"])
|
||||
|
||||
"""
|
||||
The ID of the team to unlink from the project.
|
||||
"""
|
||||
teamId: ID! @possibleTypes(concreteTypes: ["Team"])
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UnlinkProjectV2FromTeam
|
||||
"""
|
||||
type UnlinkProjectV2FromTeamPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The team the project is unlinked from
|
||||
"""
|
||||
team: Team
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UnlinkRepositoryFromProject
|
||||
"""
|
||||
|
|
|
@ -1,4 +1,26 @@
|
|||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"<p>Type 'LinkProjectV2ToTeamInput' was added</p>",
|
||||
"<p>Type 'LinkProjectV2ToTeamPayload' was added</p>",
|
||||
"<p>Type 'ProjectV2Filters' was added</p>",
|
||||
"<p>Type 'ProjectV2State' was added</p>",
|
||||
"<p>Type 'UnlinkProjectV2FromTeamInput' was added</p>",
|
||||
"<p>Type 'UnlinkProjectV2FromTeamPayload' was added</p>",
|
||||
"<p>Field 'linkProjectV2ToTeam<code>was added to object type</code>Mutation'</p>",
|
||||
"<p>Field 'unlinkProjectV2FromTeam<code>was added to object type</code>Mutation'</p>",
|
||||
"<p>Argument 'filterBy: ProjectV2Filters<code>added to field</code>Team.projectsV2'</p>",
|
||||
"<p>Argument <code>query: String</code> added to field 'Team.projectsV2'</p>"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [],
|
||||
"date": "2022-11-11"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
|
|
@ -4238,6 +4238,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linkProjectV2ToTeam",
|
||||
"kind": "mutations",
|
||||
"id": "linkprojectv2toteam",
|
||||
"href": "/graphql/reference/mutations#linkprojectv2toteam",
|
||||
"description": "<p>Links a project to a team.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "LinkProjectV2ToTeamInput!",
|
||||
"id": "linkprojectv2toteaminput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#linkprojectv2toteaminput"
|
||||
}
|
||||
],
|
||||
"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": "team",
|
||||
"type": "Team",
|
||||
"id": "team",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#team",
|
||||
"description": "<p>The team the project is linked to.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linkRepositoryToProject",
|
||||
"kind": "mutations",
|
||||
|
@ -5788,6 +5822,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "unlinkProjectV2FromTeam",
|
||||
"kind": "mutations",
|
||||
"id": "unlinkprojectv2fromteam",
|
||||
"href": "/graphql/reference/mutations#unlinkprojectv2fromteam",
|
||||
"description": "<p>Unlinks a project to a team.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "UnlinkProjectV2FromTeamInput!",
|
||||
"id": "unlinkprojectv2fromteaminput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#unlinkprojectv2fromteaminput"
|
||||
}
|
||||
],
|
||||
"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": "team",
|
||||
"type": "Team",
|
||||
"id": "team",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#team",
|
||||
"description": "<p>The team the project is unlinked from.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "unlinkRepositoryFromProject",
|
||||
"kind": "mutations",
|
||||
|
@ -63962,6 +64030,16 @@
|
|||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "filterBy",
|
||||
"description": "<p>Filtering options for projects returned from this connection.</p>",
|
||||
"type": {
|
||||
"name": "ProjectV2Filters",
|
||||
"id": "projectv2filters",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2filters"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
|
@ -63991,6 +64069,17 @@
|
|||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2order"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "query",
|
||||
"defaultValue": "",
|
||||
"description": "<p>The query to search projects by.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -77798,6 +77887,23 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2State",
|
||||
"kind": "enums",
|
||||
"id": "projectv2state",
|
||||
"href": "/graphql/reference/enums#projectv2state",
|
||||
"description": "<p>The possible states of a project v2.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "CLOSED",
|
||||
"description": "<p>A project v2 that has been closed.</p>"
|
||||
},
|
||||
{
|
||||
"name": "OPEN",
|
||||
"description": "<p>A project v2 that is still open.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2ViewLayout",
|
||||
"kind": "enums",
|
||||
|
@ -86805,6 +86911,41 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "LinkProjectV2ToTeamInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "linkprojectv2toteaminput",
|
||||
"href": "/graphql/reference/input-objects#linkprojectv2toteaminput",
|
||||
"description": "<p>Autogenerated input type of LinkProjectV2ToTeam.</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": "projectId",
|
||||
"description": "<p>The ID of the project to link to the team.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "teamId",
|
||||
"description": "<p>The ID of the team to link to the project.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "LinkRepositoryToProjectInput",
|
||||
"kind": "inputObjects",
|
||||
|
@ -87530,6 +87671,23 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2Filters",
|
||||
"kind": "inputObjects",
|
||||
"id": "projectv2filters",
|
||||
"href": "/graphql/reference/input-objects#projectv2filters",
|
||||
"description": "<p>Ways in which to filter lists of projects.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "state",
|
||||
"description": "<p>List project v2 filtered by the state given.</p>",
|
||||
"type": "ProjectV2State",
|
||||
"id": "projectv2state",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#projectv2state"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2ItemFieldValueOrder",
|
||||
"kind": "inputObjects",
|
||||
|
@ -89491,6 +89649,41 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UnlinkProjectV2FromTeamInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "unlinkprojectv2fromteaminput",
|
||||
"href": "/graphql/reference/input-objects#unlinkprojectv2fromteaminput",
|
||||
"description": "<p>Autogenerated input type of UnlinkProjectV2FromTeam.</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": "projectId",
|
||||
"description": "<p>The ID of the project to unlink from the team.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "teamId",
|
||||
"description": "<p>The ID of the team to unlink from the project.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UnlinkRepositoryFromProjectInput",
|
||||
"kind": "inputObjects",
|
||||
|
|
|
@ -4238,6 +4238,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linkProjectV2ToTeam",
|
||||
"kind": "mutations",
|
||||
"id": "linkprojectv2toteam",
|
||||
"href": "/graphql/reference/mutations#linkprojectv2toteam",
|
||||
"description": "<p>Links a project to a team.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "LinkProjectV2ToTeamInput!",
|
||||
"id": "linkprojectv2toteaminput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#linkprojectv2toteaminput"
|
||||
}
|
||||
],
|
||||
"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": "team",
|
||||
"type": "Team",
|
||||
"id": "team",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#team",
|
||||
"description": "<p>The team the project is linked to.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linkRepositoryToProject",
|
||||
"kind": "mutations",
|
||||
|
@ -5788,6 +5822,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "unlinkProjectV2FromTeam",
|
||||
"kind": "mutations",
|
||||
"id": "unlinkprojectv2fromteam",
|
||||
"href": "/graphql/reference/mutations#unlinkprojectv2fromteam",
|
||||
"description": "<p>Unlinks a project to a team.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "UnlinkProjectV2FromTeamInput!",
|
||||
"id": "unlinkprojectv2fromteaminput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#unlinkprojectv2fromteaminput"
|
||||
}
|
||||
],
|
||||
"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": "team",
|
||||
"type": "Team",
|
||||
"id": "team",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#team",
|
||||
"description": "<p>The team the project is unlinked from.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "unlinkRepositoryFromProject",
|
||||
"kind": "mutations",
|
||||
|
@ -63962,6 +64030,16 @@
|
|||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "filterBy",
|
||||
"description": "<p>Filtering options for projects returned from this connection.</p>",
|
||||
"type": {
|
||||
"name": "ProjectV2Filters",
|
||||
"id": "projectv2filters",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2filters"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
|
@ -63991,6 +64069,17 @@
|
|||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2order"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "query",
|
||||
"defaultValue": "",
|
||||
"description": "<p>The query to search projects by.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -77798,6 +77887,23 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2State",
|
||||
"kind": "enums",
|
||||
"id": "projectv2state",
|
||||
"href": "/graphql/reference/enums#projectv2state",
|
||||
"description": "<p>The possible states of a project v2.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "CLOSED",
|
||||
"description": "<p>A project v2 that has been closed.</p>"
|
||||
},
|
||||
{
|
||||
"name": "OPEN",
|
||||
"description": "<p>A project v2 that is still open.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2ViewLayout",
|
||||
"kind": "enums",
|
||||
|
@ -86805,6 +86911,41 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "LinkProjectV2ToTeamInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "linkprojectv2toteaminput",
|
||||
"href": "/graphql/reference/input-objects#linkprojectv2toteaminput",
|
||||
"description": "<p>Autogenerated input type of LinkProjectV2ToTeam.</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": "projectId",
|
||||
"description": "<p>The ID of the project to link to the team.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "teamId",
|
||||
"description": "<p>The ID of the team to link to the project.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "LinkRepositoryToProjectInput",
|
||||
"kind": "inputObjects",
|
||||
|
@ -87530,6 +87671,23 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2Filters",
|
||||
"kind": "inputObjects",
|
||||
"id": "projectv2filters",
|
||||
"href": "/graphql/reference/input-objects#projectv2filters",
|
||||
"description": "<p>Ways in which to filter lists of projects.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "state",
|
||||
"description": "<p>List project v2 filtered by the state given.</p>",
|
||||
"type": "ProjectV2State",
|
||||
"id": "projectv2state",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#projectv2state"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2ItemFieldValueOrder",
|
||||
"kind": "inputObjects",
|
||||
|
@ -89491,6 +89649,41 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UnlinkProjectV2FromTeamInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "unlinkprojectv2fromteaminput",
|
||||
"href": "/graphql/reference/input-objects#unlinkprojectv2fromteaminput",
|
||||
"description": "<p>Autogenerated input type of UnlinkProjectV2FromTeam.</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": "projectId",
|
||||
"description": "<p>The ID of the project to unlink from the team.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "teamId",
|
||||
"description": "<p>The ID of the team to unlink from the project.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UnlinkRepositoryFromProjectInput",
|
||||
"kind": "inputObjects",
|
||||
|
|
Загрузка…
Ссылка в новой задаче