public function find(JsonResponse $res, $id)
 {
     $gameScore = $this->gameScore->findOrFail($id);
     return new JsonResponse(['data' => $this->serializeGameScore($gameScore)]);
 }