mutation UpdateDsymUpload($id: ID!, $input: DsymUploadMetadataInput!) {
updateDsymUpload(id: $id, input: $input) {
id
filename
status
error
source
uploadedBy
}
}{
"id": "id",
"input": {}
}{
"data": {
"updateDsymUpload": {
"id": "id",
"filename": "string",
"status": "UPLOADING",
"error": "string",
"source": "UPLOAD",
"uploadedBy": "string"
}
}
}updateDsymUpload
Changes the build ID, link, and project attached to a dSYM upload.
updateDsymUpload(id: ID!, input: DsymUploadMetadataInput!): DsymUpload!Arguments
Identifier of the upload.
Values to attach.
Returns
Stable identifier for this upload.
Name of the uploaded file.
Where the upload is in processing.
Why the upload failed. May be null when it did not.
How the upload reached the server.
Who uploaded it: a user's email or an API key's name. May be null for build imports.
Build identifier attached to the upload. May be null when none was sent.
Identifier of the dashboard build the upload belongs to. May be null when it matches none.
Link attached to the upload, such as a CI run. May be null when none was sent.
Project name attached to the upload. May be null when none was sent.
Size of the uploaded zip in bytes.
Bytes received so far by a resumable upload.
Import attempts for a build's dSYMs.
Number of dSYM bundles the upload holds.
ISO 8601 time the upload started.
ISO 8601 time the upload last changed.
ISO 8601 time indexing finished. May be null until it has.
mutation UpdateDsymUpload($id: ID!, $input: DsymUploadMetadataInput!) {
updateDsymUpload(id: $id, input: $input) {
id
filename
status
error
source
uploadedBy
}
}{
"id": "id",
"input": {}
}{
"data": {
"updateDsymUpload": {
"id": "id",
"filename": "string",
"status": "UPLOADING",
"error": "string",
"source": "UPLOAD",
"uploadedBy": "string"
}
}
}