Skip to content
Snippets Groups Projects

Update iteration cadence mutation [RUN ALL RSPEC] [RUN AS-IF-FOSS]

Merged Mario Celi requested to merge update-iteration-cadence-mutation into master
Compare and
22 files
+ 920
13
Compare changes
  • Side-by-side
  • Inline
Files
22
@@ -2585,6 +2585,30 @@ Represents an iteration object.
| `webPath` | String! | Web path of the iteration. |
| `webUrl` | String! | Web URL of the iteration. |
### IterationCadence
Represents an iteration cadence.
| Field | Type | Description |
| ----- | ---- | ----------- |
| `active` | Boolean | Active flag to activate or deactivate an iteration cadence. |
| `automatic` | Boolean | Automatic flag to set the iteration cadence to automatically generate future iterations. |
| `durationInWeeks` | Int! | Duration in weeks of an iterations under this cadence. |
| `id` | IterationsCadenceID! | Global ID of the iteration cadence. |
| `iterationsInAdvance` | Int! | Iterations in advance to be created when iteration cadence is set to automatic. |
| `startDate` | Time | Timestamp of the iteration cadence start date. |
| `title` | String! | Title of the iteration cadence. |
### IterationCadenceCreatePayload
Autogenerated return type of IterationCadenceCreate.
| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | String | A unique identifier for the client performing the mutation. |
| `errors` | String! => Array | Errors encountered during execution of the mutation. |
| `iterationCadence` | IterationCadence | The created iteration cadence. |
### JiraImport
| Field | Type | Description |
@@ -4430,6 +4454,16 @@ Autogenerated return type of UpdateIssue.
| `errors` | String! => Array | Errors encountered during execution of the mutation. |
| `issue` | Issue | The issue after mutation. |
### UpdateIterationCadencePayload
Autogenerated return type of UpdateIterationCadence.
| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | String | A unique identifier for the client performing the mutation. |
| `errors` | String! => Array | Errors encountered during execution of the mutation. |
| `iterationCadence` | IterationCadence | The updated iteration cadence. |
### UpdateIterationPayload
Autogenerated return type of UpdateIteration.
Loading