GraphQL reference

CreateFileUploadPayload

Object

Autogenerated return type of CreateFileUpload.

mutation { organization(id: $organizationId) { createFileUpload } }

Example

mutation CreateFileUpload(
  $organizationId: ID!
  $input: CreateFileUploadInput!
) {
  organization(id: $organizationId) {
    createFileUpload(input: $input) {
        signedId
        uploadHeaders
        uploadUrl
        errors
      }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!
signedIdString
uploadHeadersJSON
uploadUrlString