GraphQL reference

SetExpenseBudgetLockedPayload

Object

Autogenerated return type of SetExpenseBudgetLocked.

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

Example

mutation SetExpenseBudgetLocked(
  $organizationId: ID!
  $projectId: ID!
  $input: SetExpenseBudgetLockedInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      setExpenseBudgetLocked(input: $input) {
        expenseBudgetModifications
        errors
      }
    }
  }
}

Fields

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