EditSubProjectsInput
InputAutogenerated input type of EditSubProjects
mutation { organization(id: $organizationId) { project(id: $projectId) { editSubProjects } } }
Example
mutation EditSubProjects(
$organizationId: ID!
$projectId: ID!
$input: EditSubProjectsInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
editSubProjects(input: $input) {
errors
}
}
}
}Fields
| Field | Type | Description |
|---|---|---|
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| editedAt | ISO8601DateTime! | — |
| id | ID! | — |
| mutationMetadata | JSON | — |
| subProjects | [SubProjectInput!]! | — |