createComplaint
Create a complaint.
Deprecation
The 'createComplaint' field is deprecated.This mutation is being removed from the core API and has no replacement.
If you create complaints through this mutation, please contact your Kraken
representative before the removal date.
- Marked as deprecated on 2026-08-17.
- Scheduled for removal on or after 2026-08-26.
Arguments
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 CreateComplaint($complaint: CreateComplaintInputType!) {
createComplaint(complaint: $complaint) {
complaint {
...ComplaintTypeFragment
}
}
}
Variables
{
"complaint": CreateComplaintInputType
}
Response
{
"data": {
"createComplaint": {
"complaint": ComplaintType
}
}
}