graphql api mutations request at playground but occur server_error

Hello!
I try to request mutation restartApp query

mutation restartApp($input: RestartAppInput!) {
  restartApp(input: $input) {
    app{
      id 
      name
    }
    clientMutationId
  }
}
# query variables
{
  "input": {
    "appId": "braavos-alpha-pig",
    "clientMutationId": "retart"
  }
}
#http headers
{"Authorization": "Bearer query avaiable token"}

but occur server_error

{
  "error": {
    "errors": [
      {
        "message": "You hit a Fly API error with request ID: 01J86EEEPN8REQ1RGECY8GKX6S-nrt",
        "extensions": {
          "code": "SERVER_ERROR",
          "fly_request_id": "01J86EEEPN8REQ1RGECY8GKX6S-nrt"
        }
      }
    ],
    "data": {}
  }
}

why occur error? then solve the problem!
plz help!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.