I am writing an iOS app which uses AppSync and DynamoDB as the BaaS. I need to pass an image (Binary) from the backend to the app via schema.graphql. However, based on this documentation:
https://docs.aws.amazon.com/appsync/latest/devguide/scalars.html
There's no scalar type in the schema for images (binary). Should I use String instead? Would the app client (iOS) be able to parse the String correctly as an image?