GraphQL schema update (#54417)
Co-authored-by: heiskr <1221423+heiskr@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,21 @@
|
||||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"<p>Type 'ProjectV2Iteration' was added</p>",
|
||||
"<p>Type 'ProjectV2IterationFieldConfigurationInput' was added</p>",
|
||||
"<p>Input field <code>iterationConfiguration</code> of type 'ProjectV2IterationFieldConfigurationInput<code>was added to input object type</code>CreateProjectV2FieldInput'</p>",
|
||||
"<p>Enum value <code>ITERATION</code> was added to enum 'ProjectV2CustomFieldType'</p>",
|
||||
"<p>Input field <code>iterationConfiguration</code> of type 'ProjectV2IterationFieldConfigurationInput<code>was added to input object type</code>UpdateProjectV2FieldInput'</p>"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [],
|
||||
"date": "2025-02-14"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
||||
@@ -8013,6 +8013,11 @@ input CreateProjectV2FieldInput {
|
||||
"""
|
||||
dataType: ProjectV2CustomFieldType!
|
||||
|
||||
"""
|
||||
Configuration for an iteration field.
|
||||
"""
|
||||
iterationConfiguration: ProjectV2IterationFieldConfigurationInput
|
||||
|
||||
"""
|
||||
The name of the field.
|
||||
"""
|
||||
@@ -34685,6 +34690,11 @@ enum ProjectV2CustomFieldType {
|
||||
"""
|
||||
DATE
|
||||
|
||||
"""
|
||||
Iteration
|
||||
"""
|
||||
ITERATION
|
||||
|
||||
"""
|
||||
Number
|
||||
"""
|
||||
@@ -35800,6 +35810,26 @@ enum ProjectV2ItemType {
|
||||
REDACTED
|
||||
}
|
||||
|
||||
"""
|
||||
Represents an iteration
|
||||
"""
|
||||
input ProjectV2Iteration {
|
||||
"""
|
||||
The duration of the iteration, in days.
|
||||
"""
|
||||
duration: Int!
|
||||
|
||||
"""
|
||||
The start date for the iteration.
|
||||
"""
|
||||
startDate: Date!
|
||||
|
||||
"""
|
||||
The title for the iteration.
|
||||
"""
|
||||
title: String!
|
||||
}
|
||||
|
||||
"""
|
||||
An iteration field inside a project.
|
||||
"""
|
||||
@@ -35870,6 +35900,26 @@ type ProjectV2IterationFieldConfiguration {
|
||||
startDay: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
Represents an iteration field configuration.
|
||||
"""
|
||||
input ProjectV2IterationFieldConfigurationInput {
|
||||
"""
|
||||
The duration of each iteration, in days.
|
||||
"""
|
||||
duration: Int!
|
||||
|
||||
"""
|
||||
Zero or more iterations for the field.
|
||||
"""
|
||||
iterations: [ProjectV2Iteration!]!
|
||||
|
||||
"""
|
||||
The start date for the first iteration.
|
||||
"""
|
||||
startDate: Date!
|
||||
}
|
||||
|
||||
"""
|
||||
Iteration field iteration settings for a project.
|
||||
"""
|
||||
@@ -60993,6 +61043,11 @@ input UpdateProjectV2FieldInput {
|
||||
abstractType: "ProjectV2FieldConfiguration"
|
||||
)
|
||||
|
||||
"""
|
||||
Configuration for an iteration field.
|
||||
"""
|
||||
iterationConfiguration: ProjectV2IterationFieldConfigurationInput
|
||||
|
||||
"""
|
||||
The name to update.
|
||||
"""
|
||||
|
||||
@@ -87319,6 +87319,10 @@
|
||||
"name": "DATE",
|
||||
"description": "<p>Date.</p>"
|
||||
},
|
||||
{
|
||||
"name": "ITERATION",
|
||||
"description": "<p>Iteration.</p>"
|
||||
},
|
||||
{
|
||||
"name": "NUMBER",
|
||||
"description": "<p>Number.</p>"
|
||||
@@ -96841,6 +96845,14 @@
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#projectv2customfieldtype"
|
||||
},
|
||||
{
|
||||
"name": "iterationConfiguration",
|
||||
"description": "<p>Configuration for an iteration field.</p>",
|
||||
"type": "ProjectV2IterationFieldConfigurationInput",
|
||||
"id": "projectv2iterationfieldconfigurationinput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2iterationfieldconfigurationinput"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"description": "<p>The name of the field.</p>",
|
||||
@@ -100800,6 +100812,72 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2Iteration",
|
||||
"kind": "inputObjects",
|
||||
"id": "projectv2iteration",
|
||||
"href": "/graphql/reference/input-objects#projectv2iteration",
|
||||
"description": "<p>Represents an iteration.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "duration",
|
||||
"description": "<p>The duration of the iteration, in days.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "startDate",
|
||||
"description": "<p>The start date for the iteration.</p>",
|
||||
"type": "Date!",
|
||||
"id": "date",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#date"
|
||||
},
|
||||
{
|
||||
"name": "title",
|
||||
"description": "<p>The title for the iteration.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2IterationFieldConfigurationInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "projectv2iterationfieldconfigurationinput",
|
||||
"href": "/graphql/reference/input-objects#projectv2iterationfieldconfigurationinput",
|
||||
"description": "<p>Represents an iteration field configuration.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "duration",
|
||||
"description": "<p>The duration of each iteration, in days.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "iterations",
|
||||
"description": "<p>Zero or more iterations for the field.</p>",
|
||||
"type": "[ProjectV2Iteration!]!",
|
||||
"id": "projectv2iteration",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2iteration"
|
||||
},
|
||||
{
|
||||
"name": "startDate",
|
||||
"description": "<p>The start date for the first iteration.</p>",
|
||||
"type": "Date!",
|
||||
"id": "date",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#date"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2Order",
|
||||
"kind": "inputObjects",
|
||||
@@ -105995,6 +106073,14 @@
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "iterationConfiguration",
|
||||
"description": "<p>Configuration for an iteration field.</p>",
|
||||
"type": "ProjectV2IterationFieldConfigurationInput",
|
||||
"id": "projectv2iterationfieldconfigurationinput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2iterationfieldconfigurationinput"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"description": "<p>The name to update.</p>",
|
||||
|
||||
@@ -8013,6 +8013,11 @@ input CreateProjectV2FieldInput {
|
||||
"""
|
||||
dataType: ProjectV2CustomFieldType!
|
||||
|
||||
"""
|
||||
Configuration for an iteration field.
|
||||
"""
|
||||
iterationConfiguration: ProjectV2IterationFieldConfigurationInput
|
||||
|
||||
"""
|
||||
The name of the field.
|
||||
"""
|
||||
@@ -34685,6 +34690,11 @@ enum ProjectV2CustomFieldType {
|
||||
"""
|
||||
DATE
|
||||
|
||||
"""
|
||||
Iteration
|
||||
"""
|
||||
ITERATION
|
||||
|
||||
"""
|
||||
Number
|
||||
"""
|
||||
@@ -35800,6 +35810,26 @@ enum ProjectV2ItemType {
|
||||
REDACTED
|
||||
}
|
||||
|
||||
"""
|
||||
Represents an iteration
|
||||
"""
|
||||
input ProjectV2Iteration {
|
||||
"""
|
||||
The duration of the iteration, in days.
|
||||
"""
|
||||
duration: Int!
|
||||
|
||||
"""
|
||||
The start date for the iteration.
|
||||
"""
|
||||
startDate: Date!
|
||||
|
||||
"""
|
||||
The title for the iteration.
|
||||
"""
|
||||
title: String!
|
||||
}
|
||||
|
||||
"""
|
||||
An iteration field inside a project.
|
||||
"""
|
||||
@@ -35870,6 +35900,26 @@ type ProjectV2IterationFieldConfiguration {
|
||||
startDay: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
Represents an iteration field configuration.
|
||||
"""
|
||||
input ProjectV2IterationFieldConfigurationInput {
|
||||
"""
|
||||
The duration of each iteration, in days.
|
||||
"""
|
||||
duration: Int!
|
||||
|
||||
"""
|
||||
Zero or more iterations for the field.
|
||||
"""
|
||||
iterations: [ProjectV2Iteration!]!
|
||||
|
||||
"""
|
||||
The start date for the first iteration.
|
||||
"""
|
||||
startDate: Date!
|
||||
}
|
||||
|
||||
"""
|
||||
Iteration field iteration settings for a project.
|
||||
"""
|
||||
@@ -60993,6 +61043,11 @@ input UpdateProjectV2FieldInput {
|
||||
abstractType: "ProjectV2FieldConfiguration"
|
||||
)
|
||||
|
||||
"""
|
||||
Configuration for an iteration field.
|
||||
"""
|
||||
iterationConfiguration: ProjectV2IterationFieldConfigurationInput
|
||||
|
||||
"""
|
||||
The name to update.
|
||||
"""
|
||||
|
||||
@@ -87319,6 +87319,10 @@
|
||||
"name": "DATE",
|
||||
"description": "<p>Date.</p>"
|
||||
},
|
||||
{
|
||||
"name": "ITERATION",
|
||||
"description": "<p>Iteration.</p>"
|
||||
},
|
||||
{
|
||||
"name": "NUMBER",
|
||||
"description": "<p>Number.</p>"
|
||||
@@ -96841,6 +96845,14 @@
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#projectv2customfieldtype"
|
||||
},
|
||||
{
|
||||
"name": "iterationConfiguration",
|
||||
"description": "<p>Configuration for an iteration field.</p>",
|
||||
"type": "ProjectV2IterationFieldConfigurationInput",
|
||||
"id": "projectv2iterationfieldconfigurationinput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2iterationfieldconfigurationinput"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"description": "<p>The name of the field.</p>",
|
||||
@@ -100800,6 +100812,72 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2Iteration",
|
||||
"kind": "inputObjects",
|
||||
"id": "projectv2iteration",
|
||||
"href": "/graphql/reference/input-objects#projectv2iteration",
|
||||
"description": "<p>Represents an iteration.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "duration",
|
||||
"description": "<p>The duration of the iteration, in days.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "startDate",
|
||||
"description": "<p>The start date for the iteration.</p>",
|
||||
"type": "Date!",
|
||||
"id": "date",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#date"
|
||||
},
|
||||
{
|
||||
"name": "title",
|
||||
"description": "<p>The title for the iteration.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2IterationFieldConfigurationInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "projectv2iterationfieldconfigurationinput",
|
||||
"href": "/graphql/reference/input-objects#projectv2iterationfieldconfigurationinput",
|
||||
"description": "<p>Represents an iteration field configuration.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "duration",
|
||||
"description": "<p>The duration of each iteration, in days.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "iterations",
|
||||
"description": "<p>Zero or more iterations for the field.</p>",
|
||||
"type": "[ProjectV2Iteration!]!",
|
||||
"id": "projectv2iteration",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2iteration"
|
||||
},
|
||||
{
|
||||
"name": "startDate",
|
||||
"description": "<p>The start date for the first iteration.</p>",
|
||||
"type": "Date!",
|
||||
"id": "date",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#date"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2Order",
|
||||
"kind": "inputObjects",
|
||||
@@ -105995,6 +106073,14 @@
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "iterationConfiguration",
|
||||
"description": "<p>Configuration for an iteration field.</p>",
|
||||
"type": "ProjectV2IterationFieldConfigurationInput",
|
||||
"id": "projectv2iterationfieldconfigurationinput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2iterationfieldconfigurationinput"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"description": "<p>The name to update.</p>",
|
||||
|
||||
Reference in New Issue
Block a user