GraphQL reference

UpdateCostCodeForecastOverridePayload

Object

Autogenerated return type of UpdateCostCodeForecastOverride.

mutation { organization(id: $organizationId) { project(id: $projectId) { updateCostCodeForecastOverride } } }

Example

mutation UpdateCostCodeForecastOverride(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateCostCodeForecastOverrideInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateCostCodeForecastOverride(input: $input) {
        costCodeForecastOverride
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
costCodeForecastOverrideCostCodeForecastOverride
errors[String!]!