mutation UpdateFile($fileId: ID!, $input: FileInput!) {
tenant {
updateFile(fileId: $fileId, input: $input) {
id
url
name
size
type
caption
}
}
}
{
"fileId": 6,
"input": {
"caption": "Best server in the universe"
}
}
{
"data": {
"tenant": {
"updateFile": {
"caption": "Best server in the universe",
"id": "6",
"name": "Server.png",
"size": 42405,
"type": "image/png",
"url": "https://cdn.warpgate.tech/..."
}
}
}
}