complaint
Get a complaint.
Arguments
Returns
ComplaintTypeExamples
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.
query Complaint($complaintId: Int!) {
complaint(complaintId: $complaintId) {
assigneeId
contacts {
...ComplaintContactConnectionTypeConnectionFragment
}
creationDate
id
isOfficial
resolutionDate
subtype
type
}
}
Variables
{
"complaintId": 96347156
}
Response
{
"data": {
"complaint": {
"assigneeId": "45524475",
"contacts": ComplaintContactConnectionTypeConnection,
"creationDate": "1994-09-28",
"id": "40944854",
"isOfficial": true,
"resolutionDate": "1973-01-26",
"subtype": "others-method-clear-factor-answer",
"type": "this-design-public-institution-respond"
}
}
}