UserImageInput
Image data input used for setting a user's profle and/or avatar image. To upload image data, use either the file field or the upload field to send the file contents. The upload field uses the multipart/form-data media type to transfer the image, and the file field uses a base64-encoded string. If the images you are uploading will be larger than 100kb, you must use the multipart/form-data media type and the upload field.
input UserImageInput {
base64: String
upload: Upload
}
Fields
UserImageInput.base64
● String
scalar
Base64-encoded image file data. Use this field when uploading a user's image via a base64-encoded string. When this field is sent, the upload field cannot be used. Note: Should you need to upload a image larger than 100kb, you can not use the base64 field, and must use the upload field with the multipart/form-data media type.
UserImageInput.upload
● Upload
scalar
multipart/form-data file upload data. Use this field when uploading images using the multipart/form-data media type. Not that the filename will be ignored. When this field is sent, the base64 field cannot be used.
Member of
UserInput
input