GraphQL reference

EnableProjectCostCodesInput

Input

Autogenerated input type of EnableProjectCostCodes

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

Example

mutation EnableProjectCostCodes(
  $organizationId: ID!
  $projectId: ID!
  $input: EnableProjectCostCodesInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      enableProjectCostCodes(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
costCodeIds[ID!]
mutationMetadataJSON
nowString
organizationIdID!
projectIdID!