completeApproval
Complete an approval by marking it as approved or rejected.
Arguments
Input for completing the approval.
Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation CompleteApproval($input: CompleteApprovalInputType!) {
completeApproval(input: $input) {
completedApproval {
...CompletedApprovalFragment
}
}
}
Variables
{
"input": CompleteApprovalInputType
}
Response
{
"data": {
"completeApproval": {
"completedApproval": CompletedApproval
}
}
}