DEV Community

Discussion on: GraphQL Tutorial - How to Manage Image & File Uploads & Downloads with AWS AppSync & AWS Amplify

Collapse
 
shikari1893 profile image
SHIV SHAKTI

Hi Nadar,

I need your help as I need to submit the Image format in a byte from Graphql schema and need to submit this image in Dynamo DB.

type S3Object {
bucket: String!
key: String!
region: String!
}

input S3ObjectInput {
bucket: String!
region: String!
localUri: String
mimeType: String
}

can you please tell me the mutation for this as how it works ?