Query
query CrashFacets {
crashFacets {
apps {
bundleId
appName
count
}
appVersions
}
}Response
{
"data": {
"crashFacets": {
"apps": [
{
"bundleId": "string",
"appName": "string",
"count": 1
}
],
"appVersions": [
"string"
]
}
}
}Queries
crashFacets
Returns the apps and versions the crash filters can choose from.
QUERY
crashFacets: CrashFacets!Returns
apps
[CrashAppFacet!]!
Apps that have sent crash reports.
appVersions
[String!]!
App versions that have crashed, newest first.
Query
query CrashFacets {
crashFacets {
apps {
bundleId
appName
count
}
appVersions
}
}Response
{
"data": {
"crashFacets": {
"apps": [
{
"bundleId": "string",
"appName": "string",
"count": 1
}
],
"appVersions": [
"string"
]
}
}
}