UpdateExpenseLinesInput
Provides the fields and values to use when updating an expense and handling its lines.
input UpdateExpenseLinesInput {
create: [CreateExpenseLineInput!]
update: [UpdateExpenseLineInput!]
delete: [ID!]
}
Fields
UpdateExpenseLinesInput.create
● [CreateExpenseLineInput!]
list input
Create a new expense line.
UpdateExpenseLinesInput.update
● [UpdateExpenseLineInput!]
list input
Update an existing line.
UpdateExpenseLinesInput.delete
● [ID!]
list scalar
Remove an existing line.
Member Of
UpdateExpenseInput
input