Skip to main content
MUTATION
symbolicateCrashReport(id: ID!): CrashReport!

Arguments

id
ID!
required

Identifier of the crash report.

Returns

id
ID!

Stable identifier for this crash report.

Format the report arrived in.

How the report reached the server.

Where the report is in symbolication.

statusMessage
String

Why the report is in its status, such as which dSYMs are missing. May be null.

filename
String!

Name of the uploaded file.

sizeBytes
Float!

Size of the uploaded file in bytes.

incidentId
String

Incident identifier from the report. May be null for MetricKit diagnostics.

appName
String

App name. May be null when the report omits it.

bundleId
String

App bundle identifier. May be null when the report omits it.

appVersion
String

App version (CFBundleShortVersionString). May be null when the report omits it.

buildVersion
String

App build number (CFBundleVersion). May be null when the report omits it.

osVersion
String

Operating system version. May be null when the report omits it.

deviceModel
String

Device model identifier, such as iPhone17,1. May be null when the report omits it.

arch
String

CPU type the report lists. May be null when the report omits it.

exceptionType
String

Mach exception type, such as EXC_BAD_ACCESS. May be null when the report omits it.

exceptionCodes
String

Exception codes. May be null when the report omits them.

signal
String

Signal, such as SIGSEGV. May be null when the report omits it.

exceptionSubtype
String

Exception subtype, such as KERN_INVALID_ADDRESS. May be null when the report omits it.

exceptionReason
String

Reason of an uncaught Objective-C exception. May be null when there was none.

terminationReason
String

Why the operating system terminated the process. May be null when the report omits it.

applicationSpecificInformation
[String!]!

Application-specific information lines, such as a Swift fatal error message.

crashedThread
Int

Number of the thread that crashed. May be null when the report does not say.

crashedAt
String

ISO 8601 time the app crashed. May be null when the report omits it.

createdAt
String!

ISO 8601 time the report was uploaded.

updatedAt
String!

ISO 8601 time the report last changed.

symbolicatedAt
String

ISO 8601 time an agent last symbolicated the report. May be null when none has.

signature
String!

Hash grouping crashes that failed the same way.

signatureTitle
String!

Readable form of the signature: the exception and the top app frame.

uploadedBy
String

Email of the user who uploaded the report. May be null for API uploads.

apiKeyName
String

Name of the API key that sent the report. May be null when none was used.

clientIp
String

Address the report was sent from. May be null when unknown.

attempts
Int!

Symbolication attempts in the current run.

agentId
ID

Identifier of the agent that last symbolicated the report. May be null when none has.

topAppFrame

The first app frame of the crashed thread. May be null when that thread has no app frames.

threads

Every thread's backtrace, symbolicated as far as possible.

lastExceptionBacktrace

Backtrace of the uncaught exception. May be null when there was none.

binaryImages

Binaries loaded into the process.

missingImages

App binaries with unnamed frames and no uploaded dSYM.

attachedDsyms
[Dsym!]!

The dSYMs used to symbolicate this report.

similarCrashes

Other reports with the same signature, newest first.

Arguments
first
Int

Maximum number of reports to return; defaults to 20.

similarCrashCount
Int!

Number of other reports with the same signature.

symbolicatedText
String!

The report in Apple's text format with every added symbol.

originalDownloadUrl
String!

Path that downloads the file as uploaded.

symbolicatedDownloadUrl
String!

Path that downloads the symbolicated text report.

Mutation
Variables
Response