AddExpenseBudgetModificationInput
InputAutogenerated input 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
}
}
}
}