Skip to main content

StandardFileUploadInput

File upload from local filesystem using GraphQL multipart request specification

input StandardFileUploadInput {
file: Upload!
fileName: String
}

Fields

StandardFileUploadInput.file ● Upload! non-null scalar

File reference from local filesystem.

Uses the GraphQL Upload form-data specification for multipart file uploads. The file is uploaded directly from the client's filesystem to the server for processing and storage.

StandardFileUploadInput.fileName ● String scalar

Custom filename for storing the uploaded file.

If not provided, the original filename from the upload will be used. Must include the file extension and be between 5-255 characters. This name affects how the file is stored and referenced.

Member Of

UploadFileInput input