Mutation
mutation UpdateCrashSettings($input: CrashSettingsInput!) {
updateCrashSettings(input: $input) {
collectionEnabled
symbolicationAgentId
symbolicationAgent {
id
name
hostname
online
}
retentionDays
dsymRetentionDays
}
}Variables
{
"input": {}
}Response
{
"data": {
"updateCrashSettings": {
"collectionEnabled": true,
"symbolicationAgentId": "id",
"symbolicationAgent": {
"id": "id",
"name": "string",
"hostname": "string",
"online": true
},
"retentionDays": 1,
"dsymRetentionDays": 1
}
}
}Mutations
updateCrashSettings
Changes the crash settings.
MUTATION
updateCrashSettings(input: CrashSettingsInput!): CrashSettings!Arguments
input
required
The changes to apply.
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.
Mutation
mutation UpdateCrashSettings($input: CrashSettingsInput!) {
updateCrashSettings(input: $input) {
collectionEnabled
symbolicationAgentId
symbolicationAgent {
id
name
hostname
online
}
retentionDays
dsymRetentionDays
}
}Variables
{
"input": {}
}Response
{
"data": {
"updateCrashSettings": {
"collectionEnabled": true,
"symbolicationAgentId": "id",
"symbolicationAgent": {
"id": "id",
"name": "string",
"hostname": "string",
"online": true
},
"retentionDays": 1,
"dsymRetentionDays": 1
}
}
}