GraphQL reference

DeleteExpenseBudgetModificationInput

Input

Autogenerated input type of DeleteExpenseBudgetModification

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

Example

mutation DeleteExpenseBudgetModification(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteExpenseBudgetModificationInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteExpenseBudgetModification(input: $input) {
        deletedId
        errors
      }
    }
  }
}

Fields

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