GraphQL reference

UpdateChangeOrderBillableOnInput

Input

Autogenerated input type of UpdateChangeOrderBillableOn

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

Example

mutation UpdateChangeOrderBillableOn(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateChangeOrderBillableOnInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateChangeOrderBillableOn(input: $input) {
        changeOrder
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
billableOnISO8601Date
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
nowISO8601DateTime
projectIdID!