GraphQL reference

AddExpenseBudgetModificationWithLineItemsInput

Input

Autogenerated input type of AddExpenseBudgetModificationWithLineItems

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

Example

mutation AddExpenseBudgetModificationWithLineItems(
  $organizationId: ID!
  $projectId: ID!
  $input: AddExpenseBudgetModificationWithLineItemsInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      addExpenseBudgetModificationWithLineItems(input: $input) {
        expenseBudgetModification
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
expenseBudgetIdID!
idID!
lineItems[ExpenseBudgetLineItemInput!]!
lockedBoolean
mutationMetadataJSON
nowISO8601DateTime
titleString!