Query
query CrashReports {
crashReports {
nodes {
id
format
source
status
statusMessage
filename
}
nextCursor
totalCount
matchingCount
}
}Response
{
"data": {
"crashReports": {
"nodes": [
{
"id": "id",
"format": "IPS",
"source": "UPLOAD",
"status": "PENDING",
"statusMessage": "string",
"filename": "string"
}
],
"nextCursor": "string",
"totalCount": 1,
"matchingCount": 1
}
}
}Queries
crashReports
Lists crash reports, newest first.
QUERY
crashReports(filter: CrashReportFilter, first: Int, after: String): CrashReportConnection!Arguments
filter
Filters to apply.
first
Int
Maximum number of reports to return, up to 200; defaults to 50.
after
String
Cursor from a previous page.
Returns
nodes
[CrashReport!]!
Crash reports on this page, newest first.
nextCursor
String
Cursor for the next page. Null on the last page.
totalCount
Int!
Number of crash reports stored.
matchingCount
Int!
Number of crash reports matching the filter.
Query
query CrashReports {
crashReports {
nodes {
id
format
source
status
statusMessage
filename
}
nextCursor
totalCount
matchingCount
}
}Response
{
"data": {
"crashReports": {
"nodes": [
{
"id": "id",
"format": "IPS",
"source": "UPLOAD",
"status": "PENDING",
"statusMessage": "string",
"filename": "string"
}
],
"nextCursor": "string",
"totalCount": 1,
"matchingCount": 1
}
}
}