INPUT_OBJECT

AttachmentDataInput

Attachment Data Input

link GraphQL Schema definition

1input AttachmentDataInput {
9
2# A valid AttachmentDataInput must have the properties filename, mimeType and data defined.
3# In alternative, the attachmentId property can be used alone.
4# If both attachmentId and other properties are defined, attachmentId takes precedence and will be used as if it was defined alone.
5#
6#
7# Filename of the attachment.
8filename: String
12
10# Content Type of the attachment.
11mimeType: String
15
13# Data of the attachment. Base64 format.
14data: String
18
16# Id of an attachment.
17attachmentId: String
19}