We are a knit-on-demand platform, and some users are experiencing an issue when trying to add a new product through our Shopify app. The error message indicates that “The file is not supported on trial accounts.” However, we have tested this using a free trial account, and everything worked correctly. Has anyone else encountered the same issue?
mutation productCreate($input: ProductInput!, $media: [CreateMediaInput!]) {
productCreate(input: $input, media: $media) {
product {
id
}
userErrors {
field
message
}
}
}
The error:
[{“field”:[“media”,“0”,“originalSource”],“message”:“The file is not supported on trial accounts. Select a plan to upload this file.”},
{“field”:[“media”,“1”,“originalSource”],“message”:“The file is not supported on trial accounts. Select a plan to upload this file.”},
{“field”:[“media”,“2”,“originalSource”],“message”:“The file is not supported on trial accounts. Select a plan to upload this file.”},
{“field”:[“media”,“3”,“originalSource”],“message”:“The file is not supported on trial accounts. Select a plan to upload this file.”}]