GraphQL reference

AddExpenseBudgetModificationPayload

Object

Autogenerated return 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.
constructableUrlString
errors[String!]!
expenseBudgetModificationExpenseBudgetModification