Skip to content

createFormAnswerFileAttachmentUploadUrlInput

Autogenerated input type of createFormAnswerFileAttachmentUploadUrl

Fields

deprecated DO NOT USE
form_answer_id · ID! · required · The ID of the form answer to attach the file to
filename · String! · required · The name of the file to upload
byte_size · Int! · required · The size of the file in bytes
checksum · String! · required · The base64 encoded MD5 checksum of the file. This is used to verify the integrity of the file on upload.
content_type · String! · required · The MIME type of the file

Used By

Definition

"""
Autogenerated input type of createFormAnswerFileAttachmentUploadUrl
"""
input createFormAnswerFileAttachmentUploadUrlInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
The ID of the form answer to attach the file to
"""
form_answer_id: ID!
"""
The name of the file to upload
"""
filename: String!
"""
The size of the file in bytes
"""
byte_size: Int!
"""
The base64 encoded MD5 checksum of the file. This is used to verify the integrity of the file on upload.
"""
checksum: String!
"""
The MIME type of the file
"""
content_type: String!
}