complaint
Get a complaint.
Arguments
Returns
ComplaintTypePossible Errors
Allowed Viewers
Required Permissions
Can query complaintsQuery 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.
query Complaint($complaintId: Int!) {
complaint(complaintId: $complaintId) {
assigneeId
contacts {
...ComplaintContactConnectionTypeConnectionFragment
}
creationDate
id
isOfficial
resolutionDate
subtype
type
}
}
Variables
{
"complaintId": 47483092
}
Response
{
"data": {
"complaint": {
"assigneeId": "35759942",
"contacts": ComplaintContactConnectionTypeConnection,
"creationDate": "2007-07-08",
"id": "62304907",
"isOfficial": true,
"resolutionDate": "1988-08-29",
"subtype": "environmental-employee-player-early-onto",
"type": "small-compare-investment-recently-point"
}
}
}