Logo of FrontifyDeveloper PortalArrow to the right
GraphQL Reference
Mutation

uploadFile():UploadFile

Upload a new file. Requires basic:write scope to be accessible

Generates a temporary unique File ID and a list of presigned Urls to upload a binary file in multiple parts. The Id can be used, after the upload is completed, to permanently link the file to a specific type (ie Asset, Attachment, `Revision) through a different mutation.

The number of upload parts and thus their corresponding part size will be computed dynamically based on the specified file size, following this logic:

  • Maxmum of 1000 parts.
  • For files of 5TB (maximum): 1000 parts of 5GB each.
  • For files less than 15MB: 1 single part of 15MB.
  • Otherwise: an inclusive range of [1, 1000] parts of [15MB, 5GB] each.

All mutations have exactly one input field called input with a unique input and return type. This is useful to write mutations with variables, so there is always one single variable per mutation. This makes it easier to use and reuse them.

Input fields of UploadFileInput
filename: String!

File name. This value will be passed on to the fileId input variable used in file mutations such as createAsset, replaceAsset, createAttachment or addAssetPreviewImage.

size: BigInt!

File size in bytes. Value must be a positive integer up to 5TB.

chunkSize: BigInt = 104857600
Deprecated

DEPRECATED File chunk size in bytes. Value must be integer between 5MB and 1GB. Please, consider using bigger chunk sizes for huge files to prevent issues. This field will be removed. | Date: 2025-07-01T00:00:00.000+00:00

Fields of UploadFile
id:ID!

Signed Id.

urls:[Url]!

Arrays with upload Urls to upload the file.