CreateChangeOrderWithoutCostImpactInput
InputAutogenerated input type of CreateChangeOrderWithoutCostImpact
mutation { organization(id: $organizationId) { project(id: $projectId) { createChangeOrderWithoutCostImpact } } }
Example
mutation CreateChangeOrderWithoutCostImpact(
$organizationId: ID!
$projectId: ID!
$input: CreateChangeOrderWithoutCostImpactInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createChangeOrderWithoutCostImpact(input: $input) {
changeOrder
errors
}
}
}
}