ApiV2-GraphQL-Docs icon indicating copy to clipboard operation
ApiV2-GraphQL-Docs copied to clipboard

Tags of anime favorite cause internal error

Open constraintAutomaton opened this issue 6 years ago • 0 comments

Hi, I tried doing a query to get the tags of the favorite anime of a user, but I throw an internal error. If I'm requesting others Infos about the favorites like less say the titles everything works fine. If I'm doing a search for anime and requesting the tags, it also works. I join below the query and the error.

 query UserInfo($user: String) {
   User(name: $user) {
     favourites {
       anime {
         edges {
           node {
             tags{
               description
            }
           }
        }
       }
     }
   }
 }

and I'm getting

{
  "errors": [
    {
      "message": "Internal Server Error",
      "status": 500
    },
    {
      "message": "Internal Server Error",
      "status": 500
    },
    {
      "message": "Internal Server Error",
      "status": 500
    },
    {
      "message": "Internal Server Error",
      "status": 500
    },
    {
      "message": "Internal Server Error",
      "status": 500
    },
    {
      "message": "Internal Server Error",
      "status": 500
    },
    {
      "message": "Internal Server Error",
      "status": 500
    }
  ],
  "data": {
    "User": null
  }
}

constraintAutomaton avatar Dec 25 '19 02:12 constraintAutomaton