allCustomReports
Retrieve reports created by users.
Arguments
| Argument | Type | Description |
|---|---|---|
| input (required) | AllCustomReportsInput! | Default argument for the request. (search term, report view type, report category, report rooms, and creator user ID). |
Returns
[CustomReportInfo!]!
Sample
{
"data": {
"allCustomReports": [
{
"createdAt": "2024-01-01T00:00:00.000Z",
"createdBy": "example-string",
"id": 0,
"name": "example-string",
"reportCategory": "AUDIT_AND_COMPLIANCE",
"reportViewType": "ACTIVE_DIRECTORY_FOREST_RECOVERY_REPORT",
"reportFilters": [
{
"name": "example-string",
"values": [
"example-string"
]
}
]
}
]
}
}