clearRefundSession
Overview
This mutation clears and deletes the current refund session.
Special Considerations
- This mutation takes no inputs.
Inputs
N/A
Returns
Promise<SuccessResult>
A promise containing a success message.
Example
Running this mutation:
mutation {
clearRefundSession{
message
}
}
Gives us:
{
"data": {
"clearRefundSession": {
"message": "Refund session successfully cleared"
}
}
}
Common Errors
N/A