Query
query CrashSettings {
crashSettings {
collectionEnabled
symbolicationAgentId
symbolicationAgent {
id
name
hostname
online
}
retentionDays
dsymRetentionDays
}
}Response
{
"data": {
"crashSettings": {
"collectionEnabled": true,
"symbolicationAgentId": "id",
"symbolicationAgent": {
"id": "id",
"name": "string",
"hostname": "string",
"online": true
},
"retentionDays": 1,
"dsymRetentionDays": 1
}
}
}Queries
crashSettings
Returns the crash settings.
QUERY
crashSettings: CrashSettings!Returns
collectionEnabled
Boolean!
Whether anonymous and API-key crash uploads are stored. Signed-in uploads are always accepted.
symbolicationAgentId
ID
Agent to symbolicate on when it is online. May be null to use any capable agent.
symbolicationAgent
That agent. May be null when none is chosen or it was removed.
retentionDays
Int!
Days crash reports are kept.
dsymRetentionDays
Int
Days dSYMs are kept. May be null to keep them until deleted.
Query
query CrashSettings {
crashSettings {
collectionEnabled
symbolicationAgentId
symbolicationAgent {
id
name
hostname
online
}
retentionDays
dsymRetentionDays
}
}Response
{
"data": {
"crashSettings": {
"collectionEnabled": true,
"symbolicationAgentId": "id",
"symbolicationAgent": {
"id": "id",
"name": "string",
"hostname": "string",
"online": true
},
"retentionDays": 1,
"dsymRetentionDays": 1
}
}
}