1
0
mirror of synced 2026-01-05 12:07:35 -05:00

Merge pull request #27044 from github/graphql-schema-update

GraphQL schema update
This commit is contained in:
docubot
2022-04-21 11:49:56 -07:00
committed by GitHub
14 changed files with 643 additions and 217 deletions

View File

@@ -14,24 +14,6 @@ upcoming_changes:
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: EnterpriseBillingInfo.availableSeats
description:
'`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead.'
reason:
'`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: EnterpriseBillingInfo.seats
description: '`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead.'
reason:
'`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: UnassignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.

View File

@@ -9736,14 +9736,6 @@ type EnterpriseBillingInfo {
"""
assetPacks: Int!
"""
The number of available seats across all owned organizations based on the unique number of billable users.
"""
availableSeats: Int!
@deprecated(
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC."
)
"""
The bandwidth quota in GB for all organizations owned by the enterprise.
"""
@@ -9759,14 +9751,6 @@ type EnterpriseBillingInfo {
"""
bandwidthUsagePercentage: Int!
"""
The total seats across all organizations owned by the enterprise.
"""
seats: Int!
@deprecated(
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC."
)
"""
The storage quota in GB for all organizations owned by the enterprise.
"""

View File

@@ -14,24 +14,6 @@ upcoming_changes:
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: EnterpriseBillingInfo.availableSeats
description:
'`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead.'
reason:
'`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: EnterpriseBillingInfo.seats
description: '`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead.'
reason:
'`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: UnassignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.

View File

@@ -477,6 +477,51 @@ type AddProjectColumnPayload {
project: Project
}
"""
Autogenerated input type of AddProjectDraftIssue
"""
input AddProjectDraftIssueInput {
"""
The IDs of the assignees of the draft issue.
"""
assigneeIds: [ID!] @possibleTypes(concreteTypes: ["User"])
"""
The body of the draft issue.
"""
body: String
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The ID of the Project to add the draft issue to.
"""
projectId: ID! @possibleTypes(concreteTypes: ["ProjectNext"])
"""
The title of the draft issue.
"""
title: String!
}
"""
Autogenerated return type of AddProjectDraftIssue
"""
type AddProjectDraftIssuePayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The draft issue added to the project.
"""
projectNextItem: ProjectNextItem
}
"""
Autogenerated input type of AddProjectNextItem
"""
@@ -10564,14 +10609,6 @@ type EnterpriseBillingInfo {
"""
assetPacks: Int!
"""
The number of available seats across all owned organizations based on the unique number of billable users.
"""
availableSeats: Int!
@deprecated(
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC."
)
"""
The bandwidth quota in GB for all organizations owned by the enterprise.
"""
@@ -10587,14 +10624,6 @@ type EnterpriseBillingInfo {
"""
bandwidthUsagePercentage: Int!
"""
The total seats across all organizations owned by the enterprise.
"""
seats: Int!
@deprecated(
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC."
)
"""
The storage quota in GB for all organizations owned by the enterprise.
"""
@@ -18537,6 +18566,16 @@ type Mutation {
input: AddProjectColumnInput!
): AddProjectColumnPayload
"""
Creates a new draft issue and add it to a Project.
"""
addProjectDraftIssue(
"""
Parameters for AddProjectDraftIssue
"""
input: AddProjectDraftIssueInput!
): AddProjectDraftIssuePayload
"""
Adds an existing item (Issue or PullRequest) to a Project.
"""
@@ -20118,6 +20157,16 @@ type Mutation {
input: UpdateProjectColumnInput!
): UpdateProjectColumnPayload
"""
Updates a draft issue within a Project.
"""
updateProjectDraftIssue(
"""
Parameters for UpdateProjectDraftIssue
"""
input: UpdateProjectDraftIssueInput!
): UpdateProjectDraftIssuePayload
"""
Updates an existing project (beta).
"""
@@ -46494,6 +46543,51 @@ type UpdateProjectColumnPayload {
projectColumn: ProjectColumn
}
"""
Autogenerated input type of UpdateProjectDraftIssue
"""
input UpdateProjectDraftIssueInput {
"""
The IDs of the assignees of the draft issue.
"""
assigneeIds: [ID!] @possibleTypes(concreteTypes: ["User"])
"""
The body of the draft issue.
"""
body: String
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The ID of the draft issue to update.
"""
draftIssueId: ID! @possibleTypes(concreteTypes: ["DraftIssue"])
"""
The title of the draft issue.
"""
title: String
}
"""
Autogenerated return type of UpdateProjectDraftIssue
"""
type UpdateProjectDraftIssuePayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The draft issue updated in the project.
"""
draftIssue: DraftIssue
}
"""
Autogenerated input type of UpdateProject
"""

View File

@@ -14,24 +14,6 @@ upcoming_changes:
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: EnterpriseBillingInfo.availableSeats
description:
'`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead.'
reason:
'`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: EnterpriseBillingInfo.seats
description: '`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead.'
reason:
'`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: UnassignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.

View File

@@ -477,6 +477,51 @@ type AddProjectColumnPayload {
project: Project
}
"""
Autogenerated input type of AddProjectDraftIssue
"""
input AddProjectDraftIssueInput {
"""
The IDs of the assignees of the draft issue.
"""
assigneeIds: [ID!] @possibleTypes(concreteTypes: ["User"])
"""
The body of the draft issue.
"""
body: String
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The ID of the Project to add the draft issue to.
"""
projectId: ID! @possibleTypes(concreteTypes: ["ProjectNext"])
"""
The title of the draft issue.
"""
title: String!
}
"""
Autogenerated return type of AddProjectDraftIssue
"""
type AddProjectDraftIssuePayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The draft issue added to the project.
"""
projectNextItem: ProjectNextItem
}
"""
Autogenerated input type of AddProjectNextItem
"""
@@ -10564,14 +10609,6 @@ type EnterpriseBillingInfo {
"""
assetPacks: Int!
"""
The number of available seats across all owned organizations based on the unique number of billable users.
"""
availableSeats: Int!
@deprecated(
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC."
)
"""
The bandwidth quota in GB for all organizations owned by the enterprise.
"""
@@ -10587,14 +10624,6 @@ type EnterpriseBillingInfo {
"""
bandwidthUsagePercentage: Int!
"""
The total seats across all organizations owned by the enterprise.
"""
seats: Int!
@deprecated(
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC."
)
"""
The storage quota in GB for all organizations owned by the enterprise.
"""
@@ -18537,6 +18566,16 @@ type Mutation {
input: AddProjectColumnInput!
): AddProjectColumnPayload
"""
Creates a new draft issue and add it to a Project.
"""
addProjectDraftIssue(
"""
Parameters for AddProjectDraftIssue
"""
input: AddProjectDraftIssueInput!
): AddProjectDraftIssuePayload
"""
Adds an existing item (Issue or PullRequest) to a Project.
"""
@@ -20118,6 +20157,16 @@ type Mutation {
input: UpdateProjectColumnInput!
): UpdateProjectColumnPayload
"""
Updates a draft issue within a Project.
"""
updateProjectDraftIssue(
"""
Parameters for UpdateProjectDraftIssue
"""
input: UpdateProjectDraftIssueInput!
): UpdateProjectDraftIssuePayload
"""
Updates an existing project (beta).
"""
@@ -46494,6 +46543,51 @@ type UpdateProjectColumnPayload {
projectColumn: ProjectColumn
}
"""
Autogenerated input type of UpdateProjectDraftIssue
"""
input UpdateProjectDraftIssueInput {
"""
The IDs of the assignees of the draft issue.
"""
assigneeIds: [ID!] @possibleTypes(concreteTypes: ["User"])
"""
The body of the draft issue.
"""
body: String
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The ID of the draft issue to update.
"""
draftIssueId: ID! @possibleTypes(concreteTypes: ["DraftIssue"])
"""
The title of the draft issue.
"""
title: String
}
"""
Autogenerated return type of UpdateProjectDraftIssue
"""
type UpdateProjectDraftIssuePayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The draft issue updated in the project.
"""
draftIssue: DraftIssue
}
"""
Autogenerated input type of UpdateProject
"""

View File

@@ -1,4 +1,24 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `AddProjectDraftIssueInput` was added",
"Type `AddProjectDraftIssuePayload` was added",
"Type `UpdateProjectDraftIssueInput` was added",
"Type `UpdateProjectDraftIssuePayload` was added",
"Field `availableSeats` (deprecated) was removed from object type `EnterpriseBillingInfo`",
"Field `seats` (deprecated) was removed from object type `EnterpriseBillingInfo`",
"Field `addProjectDraftIssue` was added to object type `Mutation`",
"Field `updateProjectDraftIssue` was added to object type `Mutation`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2022-04-21"
},
{
"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

View File

@@ -1226,6 +1226,40 @@
}
]
},
{
"name": "addProjectDraftIssue",
"kind": "mutations",
"id": "addprojectdraftissue",
"href": "/graphql/reference/mutations#addprojectdraftissue",
"description": "<p>Creates a new draft issue and add it to a Project.</p>",
"inputFields": [
{
"name": "input",
"type": "AddProjectDraftIssueInput!",
"id": "addprojectdraftissueinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#addprojectdraftissueinput"
}
],
"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": "projectNextItem",
"type": "ProjectNextItem",
"id": "projectnextitem",
"kind": "objects",
"href": "/graphql/reference/objects#projectnextitem",
"description": "<p>The draft issue added to the project.</p>"
}
]
},
{
"name": "addProjectNextItem",
"kind": "mutations",
@@ -6834,6 +6868,40 @@
}
]
},
{
"name": "updateProjectDraftIssue",
"kind": "mutations",
"id": "updateprojectdraftissue",
"href": "/graphql/reference/mutations#updateprojectdraftissue",
"description": "<p>Updates a draft issue within a Project.</p>",
"inputFields": [
{
"name": "input",
"type": "UpdateProjectDraftIssueInput!",
"id": "updateprojectdraftissueinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#updateprojectdraftissueinput"
}
],
"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": "draftIssue",
"type": "DraftIssue",
"id": "draftissue",
"kind": "objects",
"href": "/graphql/reference/objects#draftissue",
"description": "<p>The draft issue updated in the project.</p>"
}
]
},
{
"name": "updateProjectNext",
"kind": "mutations",
@@ -18313,16 +18381,6 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "availableSeats",
"description": "<p>The number of available seats across all owned organizations based on the unique number of billable users.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int",
"isDeprecated": true,
"deprecationReason": "<p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>"
},
{
"name": "bandwidthQuota",
"description": "<p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>",
@@ -18347,16 +18405,6 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "seats",
"description": "<p>The total seats across all organizations owned by the enterprise.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int",
"isDeprecated": true,
"deprecationReason": "<p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>"
},
{
"name": "storageQuota",
"description": "<p>The storage quota in GB for all organizations owned by the enterprise.</p>",
@@ -74632,6 +74680,57 @@
}
]
},
{
"name": "AddProjectDraftIssueInput",
"kind": "inputObjects",
"id": "addprojectdraftissueinput",
"href": "/graphql/reference/input-objects#addprojectdraftissueinput",
"description": "<p>Autogenerated input type of AddProjectDraftIssue.</p>",
"inputFields": [
{
"name": "assigneeIds",
"description": "<p>The IDs of the assignees of the draft issue.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "body",
"description": "<p>The body of the draft issue.</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": "projectId",
"description": "<p>The ID of the Project to add the draft issue to.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "title",
"description": "<p>The title of the draft issue.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "AddProjectNextItemInput",
"kind": "inputObjects",
@@ -83246,6 +83345,57 @@
}
]
},
{
"name": "UpdateProjectDraftIssueInput",
"kind": "inputObjects",
"id": "updateprojectdraftissueinput",
"href": "/graphql/reference/input-objects#updateprojectdraftissueinput",
"description": "<p>Autogenerated input type of UpdateProjectDraftIssue.</p>",
"inputFields": [
{
"name": "assigneeIds",
"description": "<p>The IDs of the assignees of the draft issue.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "body",
"description": "<p>The body of the draft issue.</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": "draftIssueId",
"description": "<p>The ID of the draft issue to update.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "title",
"description": "<p>The title of the draft issue.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "UpdateProjectInput",
"kind": "inputObjects",

View File

@@ -16469,16 +16469,6 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "availableSeats",
"description": "<p>The number of available seats across all owned organizations based on the unique number of billable users.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int",
"isDeprecated": true,
"deprecationReason": "<p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>"
},
{
"name": "bandwidthQuota",
"description": "<p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>",
@@ -16503,16 +16493,6 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "seats",
"description": "<p>The total seats across all organizations owned by the enterprise.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int",
"isDeprecated": true,
"deprecationReason": "<p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>"
},
{
"name": "storageQuota",
"description": "<p>The storage quota in GB for all organizations owned by the enterprise.</p>",

View File

@@ -1226,6 +1226,40 @@
}
]
},
{
"name": "addProjectDraftIssue",
"kind": "mutations",
"id": "addprojectdraftissue",
"href": "/graphql/reference/mutations#addprojectdraftissue",
"description": "<p>Creates a new draft issue and add it to a Project.</p>",
"inputFields": [
{
"name": "input",
"type": "AddProjectDraftIssueInput!",
"id": "addprojectdraftissueinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#addprojectdraftissueinput"
}
],
"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": "projectNextItem",
"type": "ProjectNextItem",
"id": "projectnextitem",
"kind": "objects",
"href": "/graphql/reference/objects#projectnextitem",
"description": "<p>The draft issue added to the project.</p>"
}
]
},
{
"name": "addProjectNextItem",
"kind": "mutations",
@@ -6834,6 +6868,40 @@
}
]
},
{
"name": "updateProjectDraftIssue",
"kind": "mutations",
"id": "updateprojectdraftissue",
"href": "/graphql/reference/mutations#updateprojectdraftissue",
"description": "<p>Updates a draft issue within a Project.</p>",
"inputFields": [
{
"name": "input",
"type": "UpdateProjectDraftIssueInput!",
"id": "updateprojectdraftissueinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#updateprojectdraftissueinput"
}
],
"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": "draftIssue",
"type": "DraftIssue",
"id": "draftissue",
"kind": "objects",
"href": "/graphql/reference/objects#draftissue",
"description": "<p>The draft issue updated in the project.</p>"
}
]
},
{
"name": "updateProjectNext",
"kind": "mutations",
@@ -18313,16 +18381,6 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "availableSeats",
"description": "<p>The number of available seats across all owned organizations based on the unique number of billable users.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int",
"isDeprecated": true,
"deprecationReason": "<p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.</p>"
},
{
"name": "bandwidthQuota",
"description": "<p>The bandwidth quota in GB for all organizations owned by the enterprise.</p>",
@@ -18347,16 +18405,6 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "seats",
"description": "<p>The total seats across all organizations owned by the enterprise.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int",
"isDeprecated": true,
"deprecationReason": "<p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.</p>"
},
{
"name": "storageQuota",
"description": "<p>The storage quota in GB for all organizations owned by the enterprise.</p>",
@@ -74632,6 +74680,57 @@
}
]
},
{
"name": "AddProjectDraftIssueInput",
"kind": "inputObjects",
"id": "addprojectdraftissueinput",
"href": "/graphql/reference/input-objects#addprojectdraftissueinput",
"description": "<p>Autogenerated input type of AddProjectDraftIssue.</p>",
"inputFields": [
{
"name": "assigneeIds",
"description": "<p>The IDs of the assignees of the draft issue.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "body",
"description": "<p>The body of the draft issue.</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": "projectId",
"description": "<p>The ID of the Project to add the draft issue to.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "title",
"description": "<p>The title of the draft issue.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "AddProjectNextItemInput",
"kind": "inputObjects",
@@ -83246,6 +83345,57 @@
}
]
},
{
"name": "UpdateProjectDraftIssueInput",
"kind": "inputObjects",
"id": "updateprojectdraftissueinput",
"href": "/graphql/reference/input-objects#updateprojectdraftissueinput",
"description": "<p>Autogenerated input type of UpdateProjectDraftIssue.</p>",
"inputFields": [
{
"name": "assigneeIds",
"description": "<p>The IDs of the assignees of the draft issue.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "body",
"description": "<p>The body of the draft issue.</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": "draftIssueId",
"description": "<p>The ID of the draft issue to update.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "title",
"description": "<p>The title of the draft issue.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "UpdateProjectInput",
"kind": "inputObjects",

View File

@@ -147,22 +147,6 @@
"criticality": "breaking",
"owner": "tambling"
},
{
"location": "EnterpriseBillingInfo.seats",
"description": "<p><code>seats</code> will be removed. Use EnterpriseBillingInfo.totalLicenses instead.</p>",
"reason": "<p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned</p>",
"date": "2020-01-01",
"criticality": "breaking",
"owner": "BlakeWilliams"
},
{
"location": "EnterpriseBillingInfo.availableSeats",
"description": "<p><code>availableSeats</code> will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses instead.</p>",
"reason": "<p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned</p>",
"date": "2020-01-01",
"criticality": "breaking",
"owner": "BlakeWilliams"
},
{
"location": "AssignedEvent.user",
"description": "<p><code>user</code> will be removed. Use the <code>assignee</code> field instead.</p>",
@@ -331,22 +315,6 @@
"criticality": "breaking",
"owner": "tambling"
},
{
"location": "EnterpriseBillingInfo.seats",
"description": "<p><code>seats</code> will be removed. Use EnterpriseBillingInfo.totalLicenses instead.</p>",
"reason": "<p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned</p>",
"date": "2020-01-01",
"criticality": "breaking",
"owner": "BlakeWilliams"
},
{
"location": "EnterpriseBillingInfo.availableSeats",
"description": "<p><code>availableSeats</code> will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses instead.</p>",
"reason": "<p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned</p>",
"date": "2020-01-01",
"criticality": "breaking",
"owner": "BlakeWilliams"
},
{
"location": "AssignedEvent.user",
"description": "<p><code>user</code> will be removed. Use the <code>assignee</code> field instead.</p>",
@@ -1071,22 +1039,6 @@
"criticality": "breaking",
"owner": "tambling"
},
{
"location": "EnterpriseBillingInfo.seats",
"description": "<p><code>seats</code> will be removed. Use EnterpriseBillingInfo.totalLicenses instead.</p>",
"reason": "<p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned</p>",
"date": "2020-01-01",
"criticality": "breaking",
"owner": "BlakeWilliams"
},
{
"location": "EnterpriseBillingInfo.availableSeats",
"description": "<p><code>availableSeats</code> will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses instead.</p>",
"reason": "<p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned</p>",
"date": "2020-01-01",
"criticality": "breaking",
"owner": "BlakeWilliams"
},
{
"location": "AssignedEvent.user",
"description": "<p><code>user</code> will be removed. Use the <code>assignee</code> field instead.</p>",