public async Task <IActionResult> GetMovie([FromQuery] Guid movieId, CancellationToken token = default)
        {
            if (movieId == Guid.Empty)
            {
                return(BadRequest());
            }

            GetMovieResponseModel result = await _movieService.GetMovieByIdAsync(movieId, token);

            GetMovieResponseViewModel response = await result.BuildAdapter().AdaptToTypeAsync <GetMovieResponseViewModel>();

            if (response == null)
            {
                return(NotFound());
            }

            return(Ok(response));
        }