GraphQL reference

AddOrEditBillingPeriodInput

Input

Autogenerated input type of AddOrEditBillingPeriod

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

Example

mutation AddOrEditBillingPeriod(
  $organizationId: ID!
  $projectId: ID!
  $input: AddOrEditBillingPeriodInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      addOrEditBillingPeriod(input: $input) {
        billingPeriod
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
dueOnISO8601Date!
endOnISO8601Date!
idID!
mutationMetadataJSON
nowISO8601DateTime
startOnISO8601Date!