OBJECT
MaterialTransactionMutation
Mutations that act on MaterialTransactions.
link GraphQL Schema definition
- type MaterialTransactionMutation {
- # Deletes the material transaction additional questions form.
- SuccessResult :
- # Creates a new material transaction.
- #
- # Arguments
- # materialTransaction: The details for the material transaction
- # to create
- MaterialTransactionCreate!): SuccessResult ( :
- # Updates a new material transaction.
- #
- # Arguments
- # materialTransaction: The details for the material transaction
- # to update
- MaterialTransactionUpdate!): SuccessResult ( :
- # Deletes a material transaction.
- #
- # Arguments
- # id: The ID of the material transaction to delete.
- Int!): SuccessResult ( :
- # Updates the material transaction additional questions form.
- #
- # Arguments
- # additionalQuestionsForm: The stringified json data from the
- # form builder.
- (
- FormTemplateDisplayMeta! :
- ): SuccessResult
- }