GraphQL reference

DeleteBillingPeriodInput

Input

Autogenerated input type of DeleteBillingPeriod

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

Example

mutation DeleteBillingPeriod(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteBillingPeriodInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteBillingPeriod(input: $input) {
        billingPeriod
        errors
      }
    }
  }
}

Fields

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