EditExpenseBudgetModificationInput
InputAutogenerated input type of EditExpenseBudgetModification
mutation { organization(id: $organizationId) { project(id: $projectId) { editExpenseBudgetModification } } }
Example
mutation EditExpenseBudgetModification(
$organizationId: ID!
$projectId: ID!
$input: EditExpenseBudgetModificationInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
editExpenseBudgetModification(input: $input) {
expenseBudgetModification
errors
}
}
}
}