The createFile mutation doesn’t seem to accept it’s documented input type for variable $files. I’m trying the exact code from the example documented here and I’m getting the following error message: FileCreateInput isn't a defined input type (on $files).
Can someone confirm this is the case and is either a bug in the API or a wrong documentation? Thanks in advance!
The full query and variables: (FileUpdateInput in error message should be FileCreateInput, I tried both)
// Mutation query
mutation fileCreate($files: [FileCreateInput!]!) {
fileCreate(files: $files) {
files {
alt
createdAt
}
userErrors {
code
field
message
}
}
}
// Variables object
{
"files": [
{
"originalSource": "placeholder"
}
]
}
// Response
{"status":500,"error":{"message":"FileUpdateInput isn't a defined input type (on $files)"}}