terminateAgreement
Terminate an agreement.
Arguments
Input for terminating an agreement.
Possible Errors
Allowed Viewers
Required Permissions
Can query agreements Can update agreeementsQuery Complexity
1Examples
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 TerminateAgreement($input: TerminateAgreementInput!) {
terminateAgreement(input: $input) {
agreement {
...CommonAgreementTypeFragment
}
}
}
Variables
{
"input": TerminateAgreementInput
}
Response
{
"data": {
"terminateAgreement": {
"agreement": CommonAgreementType
}
}
}