Hello.
I have a problem with type Upload! while accesing input parameter in Cloud Code. When correctly send request from apollo client mutation I get property input in Cloud code empty.
params: { input: {}, mch_id: 957 },
My graphql schema of the mutation looks like:
uploadMerchdetImage(input: Upload!, mch_id: Int): UploadImageReponseType
@resolve```
Many thanks for any possible solution.
I like to read input, which is File type in the cloud Code. After upgrading to version 4.3.0 this functionality stopped working. On client I use Apollo-upload-client.
Did it work on previous versions? If that’s the case, would you mind to open an issue on parse server repo? A possible working around is first upload the file using createFile mutation and then only send the file reference to the cloud code.