QUERY
mutation fileCreate($files: [FileCreateInput!]!) {
fileCreate(files: $files) {
files {
alt
createdAt
}
userErrors {
code
field
message
}
}
}
GRAPHQL VARIABLES
{
"files": [
{
"alt": "Rainbow hearts on watercolor canvas",
"originalSource": "https://cdn.shopify.com/s/files/1/0456/9399/2982/files/rainbow-wooden-hearts-lined-up-on-watercolour-canvas.jpg"
}
]
}
But I got this response. Am I missing something? Thanks in advance.
{
"data": {
"fileCreate": null
},
"errors": [
{
"message": "FileCreate access denied",
"locations": [
{
"line": 3,
"column": 3
}
],
"path": [
"fileCreate"
]
}
],
"extensions": {
"cost": {
"requestedQueryCost": 10,
"actualQueryCost": 10,
"throttleStatus": {
"maximumAvailable": 1000.0,
"currentlyAvailable": 990,
"restoreRate": 50.0
}
}
}
}
