GraphQL reference

DeleteExpenseBudgetLineItemPayload

Object

Autogenerated return type of DeleteExpenseBudgetLineItem.

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

Example

mutation DeleteExpenseBudgetLineItem(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteExpenseBudgetLineItemInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteExpenseBudgetLineItem(input: $input) {
        expenseBudgetLineItem
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!
expenseBudgetLineItemExpenseBudgetLineItem