GraphQL reference

AddExpenseBudgetModificationInput

Input

Autogenerated input type of AddExpenseBudgetModification

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

Example

mutation AddExpenseBudgetModification(
  $organizationId: ID!
  $projectId: ID!
  $input: AddExpenseBudgetModificationInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      addExpenseBudgetModification(input: $input) {
        expenseBudgetModification
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
expenseBudgetIdID
idID!
mutationMetadataJSON
nowISO8601DateTime
originalModificationIdID
titleString!