@tmdb-graphql-api/resolvers 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/cjs/index.cjs +3435 -0
- package/dist/cjs/index.cjs.map +1 -0
- package/dist/esm/index.mjs +3432 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/types/cjs/constants.d.cts +54 -0
- package/dist/types/cjs/constants.d.cts.map +1 -0
- package/dist/types/cjs/helpers/decodeId.d.cts +3 -0
- package/dist/types/cjs/helpers/decodeId.d.cts.map +1 -0
- package/dist/types/cjs/helpers/defaultFieldResolver.d.cts +4 -0
- package/dist/types/cjs/helpers/defaultFieldResolver.d.cts.map +1 -0
- package/dist/types/cjs/helpers/encodeId.d.cts +3 -0
- package/dist/types/cjs/helpers/encodeId.d.cts.map +1 -0
- package/dist/types/cjs/helpers/formatDirectionalSuffixes.d.cts +3 -0
- package/dist/types/cjs/helpers/formatDirectionalSuffixes.d.cts.map +1 -0
- package/dist/types/cjs/helpers/formatQueryParams.d.cts +6 -0
- package/dist/types/cjs/helpers/formatQueryParams.d.cts.map +1 -0
- package/dist/types/cjs/helpers/getAppendToResponseKeys.d.cts +4 -0
- package/dist/types/cjs/helpers/getAppendToResponseKeys.d.cts.map +1 -0
- package/dist/types/cjs/helpers/getTvIdSeasonAndEpisode.d.cts +8 -0
- package/dist/types/cjs/helpers/getTvIdSeasonAndEpisode.d.cts.map +1 -0
- package/dist/types/cjs/helpers/makeFallbackFieldResolvers.d.cts +3 -0
- package/dist/types/cjs/helpers/makeFallbackFieldResolvers.d.cts.map +1 -0
- package/dist/types/cjs/helpers/removeNullValues.d.cts +3 -0
- package/dist/types/cjs/helpers/removeNullValues.d.cts.map +1 -0
- package/dist/types/cjs/helpers/snakeCasePropNames.d.cts +4 -0
- package/dist/types/cjs/helpers/snakeCasePropNames.d.cts.map +1 -0
- package/dist/types/cjs/helpers/typePropNames.d.cts +2 -0
- package/dist/types/cjs/helpers/typePropNames.d.cts.map +1 -0
- package/dist/types/cjs/index.d.cts +3 -0
- package/dist/types/cjs/index.d.cts.map +1 -0
- package/dist/types/cjs/main.d.cts +3 -0
- package/dist/types/cjs/main.d.cts.map +1 -0
- package/dist/types/cjs/queries/certifications.d.cts +5 -0
- package/dist/types/cjs/queries/certifications.d.cts.map +1 -0
- package/dist/types/cjs/queries/collection.d.cts +3401 -0
- package/dist/types/cjs/queries/collection.d.cts.map +1 -0
- package/dist/types/cjs/queries/collectionImages.d.cts +14 -0
- package/dist/types/cjs/queries/collectionImages.d.cts.map +1 -0
- package/dist/types/cjs/queries/collectionTranslations.d.cts +18 -0
- package/dist/types/cjs/queries/collectionTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/company.d.cts +15 -0
- package/dist/types/cjs/queries/company.d.cts.map +1 -0
- package/dist/types/cjs/queries/companyAlternativeNames.d.cts +10 -0
- package/dist/types/cjs/queries/companyAlternativeNames.d.cts.map +1 -0
- package/dist/types/cjs/queries/companyLogos.d.cts +14 -0
- package/dist/types/cjs/queries/companyLogos.d.cts.map +1 -0
- package/dist/types/cjs/queries/configuration.d.cts +16 -0
- package/dist/types/cjs/queries/configuration.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationCountries.d.cts +4 -0
- package/dist/types/cjs/queries/configurationCountries.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationJobs.d.cts +4 -0
- package/dist/types/cjs/queries/configurationJobs.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationLanguages.d.cts +4 -0
- package/dist/types/cjs/queries/configurationLanguages.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationPrimaryTranslations.d.cts +4 -0
- package/dist/types/cjs/queries/configurationPrimaryTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationTimezones.d.cts +4 -0
- package/dist/types/cjs/queries/configurationTimezones.d.cts.map +1 -0
- package/dist/types/cjs/queries/credit.d.cts +4196 -0
- package/dist/types/cjs/queries/credit.d.cts.map +1 -0
- package/dist/types/cjs/queries/discoverMovies.d.cts +15 -0
- package/dist/types/cjs/queries/discoverMovies.d.cts.map +1 -0
- package/dist/types/cjs/queries/discoverTv.d.cts +15 -0
- package/dist/types/cjs/queries/discoverTv.d.cts.map +1 -0
- package/dist/types/cjs/queries/episode.d.cts +98 -0
- package/dist/types/cjs/queries/episode.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeCredits.d.cts +33 -0
- package/dist/types/cjs/queries/episodeCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeExternalIds.d.cts +16 -0
- package/dist/types/cjs/queries/episodeExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeStills.d.cts +6 -0
- package/dist/types/cjs/queries/episodeStills.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/episodeTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeVideos.d.cts +16 -0
- package/dist/types/cjs/queries/episodeVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/find.d.cts +1803 -0
- package/dist/types/cjs/queries/find.d.cts.map +1 -0
- package/dist/types/cjs/queries/genres.d.cts +9 -0
- package/dist/types/cjs/queries/genres.d.cts.map +1 -0
- package/dist/types/cjs/queries/keyword.d.cts +9 -0
- package/dist/types/cjs/queries/keyword.d.cts.map +1 -0
- package/dist/types/cjs/queries/movie.d.cts +3597 -0
- package/dist/types/cjs/queries/movie.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieAlternativeTitles.d.cts +7 -0
- package/dist/types/cjs/queries/movieAlternativeTitles.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieCredits.d.cts +33 -0
- package/dist/types/cjs/queries/movieCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieExternalIds.d.cts +16 -0
- package/dist/types/cjs/queries/movieExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieImages.d.cts +6 -0
- package/dist/types/cjs/queries/movieImages.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieKeywords.d.cts +6 -0
- package/dist/types/cjs/queries/movieKeywords.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieRecommendations.d.cts +1866 -0
- package/dist/types/cjs/queries/movieRecommendations.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieReleaseDates.d.cts +13 -0
- package/dist/types/cjs/queries/movieReleaseDates.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieReviews.d.cts +1866 -0
- package/dist/types/cjs/queries/movieReviews.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieSimilarMovies.d.cts +1866 -0
- package/dist/types/cjs/queries/movieSimilarMovies.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/movieTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieVideos.d.cts +16 -0
- package/dist/types/cjs/queries/movieVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieWatchProviders.d.cts +1375 -0
- package/dist/types/cjs/queries/movieWatchProviders.d.cts.map +1 -0
- package/dist/types/cjs/queries/network.d.cts +26 -0
- package/dist/types/cjs/queries/network.d.cts.map +1 -0
- package/dist/types/cjs/queries/networkAlternativeNames.d.cts +10 -0
- package/dist/types/cjs/queries/networkAlternativeNames.d.cts.map +1 -0
- package/dist/types/cjs/queries/networkLogos.d.cts +14 -0
- package/dist/types/cjs/queries/networkLogos.d.cts.map +1 -0
- package/dist/types/cjs/queries/person.d.cts +46 -0
- package/dist/types/cjs/queries/person.d.cts.map +1 -0
- package/dist/types/cjs/queries/personCombinedCredits.d.cts +6 -0
- package/dist/types/cjs/queries/personCombinedCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/personExternalIds.d.cts +6 -0
- package/dist/types/cjs/queries/personExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/personMovieCredits.d.cts +6 -0
- package/dist/types/cjs/queries/personMovieCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/personProfiles.d.cts +6 -0
- package/dist/types/cjs/queries/personProfiles.d.cts.map +1 -0
- package/dist/types/cjs/queries/personTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/personTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/personTvCredits.d.cts +6 -0
- package/dist/types/cjs/queries/personTvCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/rated.d.cts +17 -0
- package/dist/types/cjs/queries/rated.d.cts.map +1 -0
- package/dist/types/cjs/queries/review.d.cts +28 -0
- package/dist/types/cjs/queries/review.d.cts.map +1 -0
- package/dist/types/cjs/queries/search.d.cts +17 -0
- package/dist/types/cjs/queries/search.d.cts.map +1 -0
- package/dist/types/cjs/queries/season.d.cts +282 -0
- package/dist/types/cjs/queries/season.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonCredits.d.cts +33 -0
- package/dist/types/cjs/queries/seasonCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonEpisodeCount.d.cts +3 -0
- package/dist/types/cjs/queries/seasonEpisodeCount.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonExternalIds.d.cts +6 -0
- package/dist/types/cjs/queries/seasonExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonPosters.d.cts +6 -0
- package/dist/types/cjs/queries/seasonPosters.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/seasonTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonVideos.d.cts +16 -0
- package/dist/types/cjs/queries/seasonVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/trending.d.cts +17 -0
- package/dist/types/cjs/queries/trending.d.cts.map +1 -0
- package/dist/types/cjs/queries/tv.d.cts +10460 -0
- package/dist/types/cjs/queries/tv.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvAlternativeTitles.d.cts +12 -0
- package/dist/types/cjs/queries/tvAlternativeTitles.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvContentRatings.d.cts +10 -0
- package/dist/types/cjs/queries/tvContentRatings.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvCredits.d.cts +33 -0
- package/dist/types/cjs/queries/tvCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvEpisodeGroups.d.cts +41 -0
- package/dist/types/cjs/queries/tvEpisodeGroups.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvExternalIds.d.cts +16 -0
- package/dist/types/cjs/queries/tvExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvImages.d.cts +16 -0
- package/dist/types/cjs/queries/tvImages.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvKeywords.d.cts +10 -0
- package/dist/types/cjs/queries/tvKeywords.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvRecommendations.d.cts +5373 -0
- package/dist/types/cjs/queries/tvRecommendations.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvReviews.d.cts +5373 -0
- package/dist/types/cjs/queries/tvReviews.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvSimilarTvShows.d.cts +5373 -0
- package/dist/types/cjs/queries/tvSimilarTvShows.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/tvTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvVideos.d.cts +16 -0
- package/dist/types/cjs/queries/tvVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvWatchProviders.d.cts +1375 -0
- package/dist/types/cjs/queries/tvWatchProviders.d.cts.map +1 -0
- package/dist/types/cjs/queries/videoType.d.cts +3 -0
- package/dist/types/cjs/queries/videoType.d.cts.map +1 -0
- package/dist/types/cjs/types.d.cts +326 -0
- package/dist/types/cjs/types.d.cts.map +1 -0
- package/dist/types/esm/constants.d.ts +54 -0
- package/dist/types/esm/constants.d.ts.map +1 -0
- package/dist/types/esm/helpers/decodeId.d.ts +3 -0
- package/dist/types/esm/helpers/decodeId.d.ts.map +1 -0
- package/dist/types/esm/helpers/defaultFieldResolver.d.ts +4 -0
- package/dist/types/esm/helpers/defaultFieldResolver.d.ts.map +1 -0
- package/dist/types/esm/helpers/encodeId.d.ts +3 -0
- package/dist/types/esm/helpers/encodeId.d.ts.map +1 -0
- package/dist/types/esm/helpers/formatDirectionalSuffixes.d.ts +3 -0
- package/dist/types/esm/helpers/formatDirectionalSuffixes.d.ts.map +1 -0
- package/dist/types/esm/helpers/formatQueryParams.d.ts +6 -0
- package/dist/types/esm/helpers/formatQueryParams.d.ts.map +1 -0
- package/dist/types/esm/helpers/getAppendToResponseKeys.d.ts +4 -0
- package/dist/types/esm/helpers/getAppendToResponseKeys.d.ts.map +1 -0
- package/dist/types/esm/helpers/getTvIdSeasonAndEpisode.d.ts +8 -0
- package/dist/types/esm/helpers/getTvIdSeasonAndEpisode.d.ts.map +1 -0
- package/dist/types/esm/helpers/makeFallbackFieldResolvers.d.ts +3 -0
- package/dist/types/esm/helpers/makeFallbackFieldResolvers.d.ts.map +1 -0
- package/dist/types/esm/helpers/removeNullValues.d.ts +3 -0
- package/dist/types/esm/helpers/removeNullValues.d.ts.map +1 -0
- package/dist/types/esm/helpers/snakeCasePropNames.d.ts +4 -0
- package/dist/types/esm/helpers/snakeCasePropNames.d.ts.map +1 -0
- package/dist/types/esm/helpers/typePropNames.d.ts +2 -0
- package/dist/types/esm/helpers/typePropNames.d.ts.map +1 -0
- package/dist/types/esm/index.d.ts +3 -0
- package/dist/types/esm/index.d.ts.map +1 -0
- package/dist/types/esm/main.d.ts +3 -0
- package/dist/types/esm/main.d.ts.map +1 -0
- package/dist/types/esm/queries/certifications.d.ts +5 -0
- package/dist/types/esm/queries/certifications.d.ts.map +1 -0
- package/dist/types/esm/queries/collection.d.ts +3401 -0
- package/dist/types/esm/queries/collection.d.ts.map +1 -0
- package/dist/types/esm/queries/collectionImages.d.ts +14 -0
- package/dist/types/esm/queries/collectionImages.d.ts.map +1 -0
- package/dist/types/esm/queries/collectionTranslations.d.ts +18 -0
- package/dist/types/esm/queries/collectionTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/company.d.ts +15 -0
- package/dist/types/esm/queries/company.d.ts.map +1 -0
- package/dist/types/esm/queries/companyAlternativeNames.d.ts +10 -0
- package/dist/types/esm/queries/companyAlternativeNames.d.ts.map +1 -0
- package/dist/types/esm/queries/companyLogos.d.ts +14 -0
- package/dist/types/esm/queries/companyLogos.d.ts.map +1 -0
- package/dist/types/esm/queries/configuration.d.ts +16 -0
- package/dist/types/esm/queries/configuration.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationCountries.d.ts +4 -0
- package/dist/types/esm/queries/configurationCountries.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationJobs.d.ts +4 -0
- package/dist/types/esm/queries/configurationJobs.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationLanguages.d.ts +4 -0
- package/dist/types/esm/queries/configurationLanguages.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationPrimaryTranslations.d.ts +4 -0
- package/dist/types/esm/queries/configurationPrimaryTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationTimezones.d.ts +4 -0
- package/dist/types/esm/queries/configurationTimezones.d.ts.map +1 -0
- package/dist/types/esm/queries/credit.d.ts +4196 -0
- package/dist/types/esm/queries/credit.d.ts.map +1 -0
- package/dist/types/esm/queries/discoverMovies.d.ts +15 -0
- package/dist/types/esm/queries/discoverMovies.d.ts.map +1 -0
- package/dist/types/esm/queries/discoverTv.d.ts +15 -0
- package/dist/types/esm/queries/discoverTv.d.ts.map +1 -0
- package/dist/types/esm/queries/episode.d.ts +98 -0
- package/dist/types/esm/queries/episode.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeCredits.d.ts +33 -0
- package/dist/types/esm/queries/episodeCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeExternalIds.d.ts +16 -0
- package/dist/types/esm/queries/episodeExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeStills.d.ts +6 -0
- package/dist/types/esm/queries/episodeStills.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeTranslations.d.ts +20 -0
- package/dist/types/esm/queries/episodeTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeVideos.d.ts +16 -0
- package/dist/types/esm/queries/episodeVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/find.d.ts +1803 -0
- package/dist/types/esm/queries/find.d.ts.map +1 -0
- package/dist/types/esm/queries/genres.d.ts +9 -0
- package/dist/types/esm/queries/genres.d.ts.map +1 -0
- package/dist/types/esm/queries/keyword.d.ts +9 -0
- package/dist/types/esm/queries/keyword.d.ts.map +1 -0
- package/dist/types/esm/queries/movie.d.ts +3597 -0
- package/dist/types/esm/queries/movie.d.ts.map +1 -0
- package/dist/types/esm/queries/movieAlternativeTitles.d.ts +7 -0
- package/dist/types/esm/queries/movieAlternativeTitles.d.ts.map +1 -0
- package/dist/types/esm/queries/movieCredits.d.ts +33 -0
- package/dist/types/esm/queries/movieCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/movieExternalIds.d.ts +16 -0
- package/dist/types/esm/queries/movieExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/movieImages.d.ts +6 -0
- package/dist/types/esm/queries/movieImages.d.ts.map +1 -0
- package/dist/types/esm/queries/movieKeywords.d.ts +6 -0
- package/dist/types/esm/queries/movieKeywords.d.ts.map +1 -0
- package/dist/types/esm/queries/movieRecommendations.d.ts +1866 -0
- package/dist/types/esm/queries/movieRecommendations.d.ts.map +1 -0
- package/dist/types/esm/queries/movieReleaseDates.d.ts +13 -0
- package/dist/types/esm/queries/movieReleaseDates.d.ts.map +1 -0
- package/dist/types/esm/queries/movieReviews.d.ts +1866 -0
- package/dist/types/esm/queries/movieReviews.d.ts.map +1 -0
- package/dist/types/esm/queries/movieSimilarMovies.d.ts +1866 -0
- package/dist/types/esm/queries/movieSimilarMovies.d.ts.map +1 -0
- package/dist/types/esm/queries/movieTranslations.d.ts +20 -0
- package/dist/types/esm/queries/movieTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/movieVideos.d.ts +16 -0
- package/dist/types/esm/queries/movieVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/movieWatchProviders.d.ts +1375 -0
- package/dist/types/esm/queries/movieWatchProviders.d.ts.map +1 -0
- package/dist/types/esm/queries/network.d.ts +26 -0
- package/dist/types/esm/queries/network.d.ts.map +1 -0
- package/dist/types/esm/queries/networkAlternativeNames.d.ts +10 -0
- package/dist/types/esm/queries/networkAlternativeNames.d.ts.map +1 -0
- package/dist/types/esm/queries/networkLogos.d.ts +14 -0
- package/dist/types/esm/queries/networkLogos.d.ts.map +1 -0
- package/dist/types/esm/queries/person.d.ts +46 -0
- package/dist/types/esm/queries/person.d.ts.map +1 -0
- package/dist/types/esm/queries/personCombinedCredits.d.ts +6 -0
- package/dist/types/esm/queries/personCombinedCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/personExternalIds.d.ts +6 -0
- package/dist/types/esm/queries/personExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/personMovieCredits.d.ts +6 -0
- package/dist/types/esm/queries/personMovieCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/personProfiles.d.ts +6 -0
- package/dist/types/esm/queries/personProfiles.d.ts.map +1 -0
- package/dist/types/esm/queries/personTranslations.d.ts +20 -0
- package/dist/types/esm/queries/personTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/personTvCredits.d.ts +6 -0
- package/dist/types/esm/queries/personTvCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/rated.d.ts +17 -0
- package/dist/types/esm/queries/rated.d.ts.map +1 -0
- package/dist/types/esm/queries/review.d.ts +28 -0
- package/dist/types/esm/queries/review.d.ts.map +1 -0
- package/dist/types/esm/queries/search.d.ts +17 -0
- package/dist/types/esm/queries/search.d.ts.map +1 -0
- package/dist/types/esm/queries/season.d.ts +282 -0
- package/dist/types/esm/queries/season.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonCredits.d.ts +33 -0
- package/dist/types/esm/queries/seasonCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonEpisodeCount.d.ts +3 -0
- package/dist/types/esm/queries/seasonEpisodeCount.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonExternalIds.d.ts +6 -0
- package/dist/types/esm/queries/seasonExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonPosters.d.ts +6 -0
- package/dist/types/esm/queries/seasonPosters.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonTranslations.d.ts +20 -0
- package/dist/types/esm/queries/seasonTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonVideos.d.ts +16 -0
- package/dist/types/esm/queries/seasonVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/trending.d.ts +17 -0
- package/dist/types/esm/queries/trending.d.ts.map +1 -0
- package/dist/types/esm/queries/tv.d.ts +10460 -0
- package/dist/types/esm/queries/tv.d.ts.map +1 -0
- package/dist/types/esm/queries/tvAlternativeTitles.d.ts +12 -0
- package/dist/types/esm/queries/tvAlternativeTitles.d.ts.map +1 -0
- package/dist/types/esm/queries/tvContentRatings.d.ts +10 -0
- package/dist/types/esm/queries/tvContentRatings.d.ts.map +1 -0
- package/dist/types/esm/queries/tvCredits.d.ts +33 -0
- package/dist/types/esm/queries/tvCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/tvEpisodeGroups.d.ts +41 -0
- package/dist/types/esm/queries/tvEpisodeGroups.d.ts.map +1 -0
- package/dist/types/esm/queries/tvExternalIds.d.ts +16 -0
- package/dist/types/esm/queries/tvExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/tvImages.d.ts +16 -0
- package/dist/types/esm/queries/tvImages.d.ts.map +1 -0
- package/dist/types/esm/queries/tvKeywords.d.ts +10 -0
- package/dist/types/esm/queries/tvKeywords.d.ts.map +1 -0
- package/dist/types/esm/queries/tvRecommendations.d.ts +5373 -0
- package/dist/types/esm/queries/tvRecommendations.d.ts.map +1 -0
- package/dist/types/esm/queries/tvReviews.d.ts +5373 -0
- package/dist/types/esm/queries/tvReviews.d.ts.map +1 -0
- package/dist/types/esm/queries/tvSimilarTvShows.d.ts +5373 -0
- package/dist/types/esm/queries/tvSimilarTvShows.d.ts.map +1 -0
- package/dist/types/esm/queries/tvTranslations.d.ts +20 -0
- package/dist/types/esm/queries/tvTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/tvVideos.d.ts +16 -0
- package/dist/types/esm/queries/tvVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/tvWatchProviders.d.ts +1375 -0
- package/dist/types/esm/queries/tvWatchProviders.d.ts.map +1 -0
- package/dist/types/esm/queries/videoType.d.ts +3 -0
- package/dist/types/esm/queries/videoType.d.ts.map +1 -0
- package/dist/types/esm/types.d.ts +326 -0
- package/dist/types/esm/types.d.ts.map +1 -0
- package/dist/types/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +71 -0
- package/src/__testUtils__/helpers/buildEndpoint.ts +21 -0
- package/src/__testUtils__/helpers/buildResolveInfoArg.ts +34 -0
- package/src/__testUtils__/helpers/createRestClient.ts +9 -0
- package/src/constants.ts +71 -0
- package/src/helpers/__snapshots__/typePropNames.test.ts.snap +708 -0
- package/src/helpers/decodeId.ts +4 -0
- package/src/helpers/defaultFieldResolver.ts +19 -0
- package/src/helpers/encodeId.ts +4 -0
- package/src/helpers/formatDirectionalSuffixes.ts +15 -0
- package/src/helpers/formatQueryParams.ts +8 -0
- package/src/helpers/getAppendToResponseKeys.ts +28 -0
- package/src/helpers/getTvIdSeasonAndEpisode.ts +25 -0
- package/src/helpers/makeFallbackFieldResolvers.ts +11 -0
- package/src/helpers/removeNullValues.ts +11 -0
- package/src/helpers/snakeCasePropNames.ts +9 -0
- package/src/helpers/typePropNames.test.ts +7 -0
- package/src/helpers/typePropNames.ts +14 -0
- package/src/index.ts +2 -0
- package/src/main.ts +215 -0
- package/src/queries/__snapshots__/certifications.test.ts.snap +1365 -0
- package/src/queries/__snapshots__/collection.test.ts.snap +195 -0
- package/src/queries/__snapshots__/collectionImages.test.ts.snap +29 -0
- package/src/queries/__snapshots__/collectionTranslations.test.ts.snap +391 -0
- package/src/queries/__snapshots__/company.test.ts.snap +14 -0
- package/src/queries/__snapshots__/companyAlternativeNames.test.ts.snap +14 -0
- package/src/queries/__snapshots__/companyLogos.test.ts.snap +46 -0
- package/src/queries/__snapshots__/configuration.test.ts.snap +101 -0
- package/src/queries/__snapshots__/configurationCountries.test.ts.snap +1241 -0
- package/src/queries/__snapshots__/configurationJobs.test.ts.snap +1007 -0
- package/src/queries/__snapshots__/configurationLanguages.test.ts.snap +941 -0
- package/src/queries/__snapshots__/configurationPrimaryTranslations.test.ts.snap +76 -0
- package/src/queries/__snapshots__/configurationTimezones.test.ts.snap +1678 -0
- package/src/queries/__snapshots__/credit.test.ts.snap +106 -0
- package/src/queries/__snapshots__/discoverMovies.test.ts.snap +481 -0
- package/src/queries/__snapshots__/discoverTv.test.ts.snap +443 -0
- package/src/queries/__snapshots__/episode.test.ts.snap +360 -0
- package/src/queries/__snapshots__/episodeCredits.test.ts.snap +866 -0
- package/src/queries/__snapshots__/episodeExternalIds.test.ts.snap +21 -0
- package/src/queries/__snapshots__/episodeStills.test.ts.snap +281 -0
- package/src/queries/__snapshots__/episodeTranslations.test.ts.snap +1059 -0
- package/src/queries/__snapshots__/episodeVideos.test.ts.snap +5 -0
- package/src/queries/__snapshots__/find.test.ts.snap +86 -0
- package/src/queries/__snapshots__/genres.test.ts.snap +151 -0
- package/src/queries/__snapshots__/keyword.test.ts.snap +8 -0
- package/src/queries/__snapshots__/movie.test.ts.snap +73 -0
- package/src/queries/__snapshots__/movieAlternativeTitles.test.ts.snap +611 -0
- package/src/queries/__snapshots__/movieCredits.test.ts.snap +2690 -0
- package/src/queries/__snapshots__/movieExternalIds.test.ts.snap +19 -0
- package/src/queries/__snapshots__/movieImages.test.ts.snap +7 -0
- package/src/queries/__snapshots__/movieKeywords.test.ts.snap +147 -0
- package/src/queries/__snapshots__/movieRecommendations.test.ts.snap +727 -0
- package/src/queries/__snapshots__/movieReleaseDates.test.ts.snap +755 -0
- package/src/queries/__snapshots__/movieReviews.test.ts.snap +509 -0
- package/src/queries/__snapshots__/movieSimilarMovies.test.ts.snap +693 -0
- package/src/queries/__snapshots__/movieTranslations.test.ts.snap +1079 -0
- package/src/queries/__snapshots__/movieVideos.test.ts.snap +179 -0
- package/src/queries/__snapshots__/movieWatchProviders.test.ts.snap +5321 -0
- package/src/queries/__snapshots__/network.test.ts.snap +12 -0
- package/src/queries/__snapshots__/networkAlternativeNames.test.ts.snap +18 -0
- package/src/queries/__snapshots__/networkLogos.test.ts.snap +16 -0
- package/src/queries/__snapshots__/person.test.ts.snap +35 -0
- package/src/queries/__snapshots__/personCombinedCredits.test.ts.snap +7249 -0
- package/src/queries/__snapshots__/personExternalIds.test.ts.snap +25 -0
- package/src/queries/__snapshots__/personMovieCredits.test.ts.snap +5595 -0
- package/src/queries/__snapshots__/personProfiles.test.ts.snap +155 -0
- package/src/queries/__snapshots__/personTranslations.test.ts.snap +389 -0
- package/src/queries/__snapshots__/personTvCredits.test.ts.snap +1361 -0
- package/src/queries/__snapshots__/rated.test.ts.snap +547 -0
- package/src/queries/__snapshots__/review.test.ts.snap +31 -0
- package/src/queries/__snapshots__/search.test.ts.snap +2479 -0
- package/src/queries/__snapshots__/season.test.ts.snap +4694 -0
- package/src/queries/__snapshots__/seasonCredits.test.ts.snap +692 -0
- package/src/queries/__snapshots__/seasonExternalIds.test.ts.snap +19 -0
- package/src/queries/__snapshots__/seasonPosters.test.ts.snap +5 -0
- package/src/queries/__snapshots__/seasonTranslations.test.ts.snap +1073 -0
- package/src/queries/__snapshots__/seasonVideos.test.ts.snap +395 -0
- package/src/queries/__snapshots__/trending.test.ts.snap +481 -0
- package/src/queries/__snapshots__/tv.test.ts.snap +220 -0
- package/src/queries/__snapshots__/tvAlternativeTitles.test.ts.snap +211 -0
- package/src/queries/__snapshots__/tvContentRatings.test.ts.snap +115 -0
- package/src/queries/__snapshots__/tvCredits.test.ts.snap +809 -0
- package/src/queries/__snapshots__/tvEpisodeGroups.test.ts.snap +39 -0
- package/src/queries/__snapshots__/tvExternalIds.test.ts.snap +27 -0
- package/src/queries/__snapshots__/tvImages.test.ts.snap +7 -0
- package/src/queries/__snapshots__/tvKeywords.test.ts.snap +59 -0
- package/src/queries/__snapshots__/tvRecommendations.test.ts.snap +757 -0
- package/src/queries/__snapshots__/tvReviews.test.ts.snap +562 -0
- package/src/queries/__snapshots__/tvSimilarTvShows.test.ts.snap +759 -0
- package/src/queries/__snapshots__/tvTranslations.test.ts.snap +1267 -0
- package/src/queries/__snapshots__/tvVideos.test.ts.snap +107 -0
- package/src/queries/__snapshots__/tvWatchProviders.test.ts.snap +2817 -0
- package/src/queries/certifications.test.ts +66 -0
- package/src/queries/certifications.ts +29 -0
- package/src/queries/collection.test.ts +47 -0
- package/src/queries/collection.ts +40 -0
- package/src/queries/collectionImages.test.ts +90 -0
- package/src/queries/collectionImages.ts +30 -0
- package/src/queries/collectionTranslations.test.ts +45 -0
- package/src/queries/collectionTranslations.ts +28 -0
- package/src/queries/company.test.ts +45 -0
- package/src/queries/company.ts +40 -0
- package/src/queries/companyAlternativeNames.test.ts +45 -0
- package/src/queries/companyAlternativeNames.ts +29 -0
- package/src/queries/companyLogos.test.ts +45 -0
- package/src/queries/companyLogos.ts +28 -0
- package/src/queries/configuration.test.ts +44 -0
- package/src/queries/configuration.ts +23 -0
- package/src/queries/configurationCountries.test.ts +45 -0
- package/src/queries/configurationCountries.ts +28 -0
- package/src/queries/configurationJobs.test.ts +45 -0
- package/src/queries/configurationJobs.ts +28 -0
- package/src/queries/configurationLanguages.test.ts +45 -0
- package/src/queries/configurationLanguages.ts +28 -0
- package/src/queries/configurationPrimaryTranslations.test.ts +45 -0
- package/src/queries/configurationPrimaryTranslations.ts +29 -0
- package/src/queries/configurationTimezones.test.ts +45 -0
- package/src/queries/configurationTimezones.ts +28 -0
- package/src/queries/credit.test.ts +45 -0
- package/src/queries/credit.ts +26 -0
- package/src/queries/discoverMovies.test.ts +202 -0
- package/src/queries/discoverMovies.ts +65 -0
- package/src/queries/discoverTv.test.ts +142 -0
- package/src/queries/discoverTv.ts +66 -0
- package/src/queries/episode.test.ts +82 -0
- package/src/queries/episode.ts +73 -0
- package/src/queries/episodeCredits.test.ts +134 -0
- package/src/queries/episodeCredits.ts +41 -0
- package/src/queries/episodeExternalIds.test.ts +104 -0
- package/src/queries/episodeExternalIds.ts +40 -0
- package/src/queries/episodeStills.test.ts +96 -0
- package/src/queries/episodeStills.ts +38 -0
- package/src/queries/episodeTranslations.test.ts +96 -0
- package/src/queries/episodeTranslations.ts +38 -0
- package/src/queries/episodeVideos.test.ts +96 -0
- package/src/queries/episodeVideos.ts +38 -0
- package/src/queries/find.test.ts +48 -0
- package/src/queries/find.ts +35 -0
- package/src/queries/genres.test.ts +66 -0
- package/src/queries/genres.ts +29 -0
- package/src/queries/keyword.test.ts +45 -0
- package/src/queries/keyword.ts +28 -0
- package/src/queries/movie.test.ts +81 -0
- package/src/queries/movie.ts +87 -0
- package/src/queries/movieAlternativeTitles.test.ts +95 -0
- package/src/queries/movieAlternativeTitles.ts +37 -0
- package/src/queries/movieCredits.test.ts +118 -0
- package/src/queries/movieCredits.ts +35 -0
- package/src/queries/movieExternalIds.test.ts +95 -0
- package/src/queries/movieExternalIds.ts +35 -0
- package/src/queries/movieImages.test.ts +118 -0
- package/src/queries/movieImages.ts +35 -0
- package/src/queries/movieKeywords.test.ts +95 -0
- package/src/queries/movieKeywords.ts +33 -0
- package/src/queries/movieRecommendations.test.ts +173 -0
- package/src/queries/movieRecommendations.ts +74 -0
- package/src/queries/movieReleaseDates.test.ts +103 -0
- package/src/queries/movieReleaseDates.ts +34 -0
- package/src/queries/movieReviews.test.ts +152 -0
- package/src/queries/movieReviews.ts +74 -0
- package/src/queries/movieSimilarMovies.test.ts +173 -0
- package/src/queries/movieSimilarMovies.ts +74 -0
- package/src/queries/movieTranslations.test.ts +99 -0
- package/src/queries/movieTranslations.ts +33 -0
- package/src/queries/movieVideos.test.ts +95 -0
- package/src/queries/movieVideos.ts +33 -0
- package/src/queries/movieWatchProviders.test.ts +103 -0
- package/src/queries/movieWatchProviders.ts +33 -0
- package/src/queries/network.test.ts +45 -0
- package/src/queries/network.ts +40 -0
- package/src/queries/networkAlternativeNames.test.ts +45 -0
- package/src/queries/networkAlternativeNames.ts +29 -0
- package/src/queries/networkLogos.test.ts +45 -0
- package/src/queries/networkLogos.ts +28 -0
- package/src/queries/person.test.ts +81 -0
- package/src/queries/person.ts +67 -0
- package/src/queries/personCombinedCredits.test.ts +99 -0
- package/src/queries/personCombinedCredits.ts +35 -0
- package/src/queries/personExternalIds.test.ts +99 -0
- package/src/queries/personExternalIds.ts +35 -0
- package/src/queries/personMovieCredits.test.ts +99 -0
- package/src/queries/personMovieCredits.ts +35 -0
- package/src/queries/personProfiles.test.ts +98 -0
- package/src/queries/personProfiles.ts +33 -0
- package/src/queries/personTranslations.test.ts +99 -0
- package/src/queries/personTranslations.ts +33 -0
- package/src/queries/personTvCredits.test.ts +99 -0
- package/src/queries/personTvCredits.ts +35 -0
- package/src/queries/rated.test.ts +170 -0
- package/src/queries/rated.ts +70 -0
- package/src/queries/review.test.ts +45 -0
- package/src/queries/review.ts +40 -0
- package/src/queries/search.test.ts +426 -0
- package/src/queries/search.ts +73 -0
- package/src/queries/season.test.ts +82 -0
- package/src/queries/season.ts +78 -0
- package/src/queries/seasonCredits.test.ts +118 -0
- package/src/queries/seasonCredits.ts +35 -0
- package/src/queries/seasonEpisodeCount.ts +9 -0
- package/src/queries/seasonExternalIds.test.ts +103 -0
- package/src/queries/seasonExternalIds.ts +35 -0
- package/src/queries/seasonPosters.test.ts +94 -0
- package/src/queries/seasonPosters.ts +33 -0
- package/src/queries/seasonTranslations.test.ts +102 -0
- package/src/queries/seasonTranslations.ts +33 -0
- package/src/queries/seasonVideos.test.ts +102 -0
- package/src/queries/seasonVideos.ts +33 -0
- package/src/queries/trending.test.ts +165 -0
- package/src/queries/trending.ts +70 -0
- package/src/queries/tv.test.ts +81 -0
- package/src/queries/tv.ts +98 -0
- package/src/queries/tvAlternativeTitles.test.ts +103 -0
- package/src/queries/tvAlternativeTitles.ts +35 -0
- package/src/queries/tvContentRatings.test.ts +103 -0
- package/src/queries/tvContentRatings.ts +35 -0
- package/src/queries/tvCredits.test.ts +118 -0
- package/src/queries/tvCredits.ts +35 -0
- package/src/queries/tvEpisodeGroups.test.ts +103 -0
- package/src/queries/tvEpisodeGroups.ts +34 -0
- package/src/queries/tvExternalIds.test.ts +103 -0
- package/src/queries/tvExternalIds.ts +35 -0
- package/src/queries/tvImages.test.ts +118 -0
- package/src/queries/tvImages.ts +35 -0
- package/src/queries/tvKeywords.test.ts +103 -0
- package/src/queries/tvKeywords.ts +33 -0
- package/src/queries/tvRecommendations.test.ts +173 -0
- package/src/queries/tvRecommendations.ts +74 -0
- package/src/queries/tvReviews.test.ts +168 -0
- package/src/queries/tvReviews.ts +74 -0
- package/src/queries/tvSimilarTvShows.test.ts +168 -0
- package/src/queries/tvSimilarTvShows.ts +74 -0
- package/src/queries/tvTranslations.test.ts +103 -0
- package/src/queries/tvTranslations.ts +33 -0
- package/src/queries/tvVideos.test.ts +103 -0
- package/src/queries/tvVideos.ts +33 -0
- package/src/queries/tvWatchProviders.test.ts +103 -0
- package/src/queries/tvWatchProviders.ts +33 -0
- package/src/queries/videoType.ts +4 -0
- package/src/types.ts +476 -0
- package/tsconfig.build.json +11 -0
- package/tsconfig.json +18 -0
|
@@ -0,0 +1,2479 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`resolveSearch > collections when the first 5 are requested should return the correct response 1`] = `
|
|
4
|
+
{
|
|
5
|
+
"edges": [
|
|
6
|
+
{
|
|
7
|
+
"cursor": "MTA6OnsicXVlcnkiOiJzdGFyIHdhcnMiLCJzZWFyY2hUeXBlIjoiQ09MTEVDVElPTiJ9OjpzZWFyY2g=",
|
|
8
|
+
"node": {
|
|
9
|
+
"adult": false,
|
|
10
|
+
"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg",
|
|
11
|
+
"id": 10,
|
|
12
|
+
"media_type": "Collection",
|
|
13
|
+
"name": "Star Wars Collection",
|
|
14
|
+
"original_language": "en",
|
|
15
|
+
"original_name": "Star Wars Collection",
|
|
16
|
+
"overview": "An epic space-opera theatrical film series, which depicts the adventures of various characters "a long time ago in a galaxy far, far away…."",
|
|
17
|
+
"poster_path": "/tdQzRSk4PXX6hzjLcQWHafYtZTI.jpg",
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"cursor": "NDIzODc3Ojp7InF1ZXJ5Ijoic3RhciB3YXJzIiwic2VhcmNoVHlwZSI6IkNPTExFQ1RJT04ifTo6c2VhcmNo",
|
|
22
|
+
"node": {
|
|
23
|
+
"adult": false,
|
|
24
|
+
"backdrop_path": null,
|
|
25
|
+
"id": 423877,
|
|
26
|
+
"media_type": "Collection",
|
|
27
|
+
"name": "Turkish Star Wars",
|
|
28
|
+
"original_language": "en",
|
|
29
|
+
"original_name": "Turkish Star Wars",
|
|
30
|
+
"overview": "Dünyayı Kurtaran Adam (The Man Who Saved the World) and Dünyayi Kurtaran Adam'in Oglu (The Son of the Man who Saved the World) is a series of Turkish adventure films also known as Turkish Star Wars because of its notorious use of unauthorized footage from Star Wars and other movies worked into the film.",
|
|
31
|
+
"poster_path": null,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"cursor": "MzAyMzMxOjp7InF1ZXJ5Ijoic3RhciB3YXJzIiwic2VhcmNoVHlwZSI6IkNPTExFQ1RJT04ifTo6c2VhcmNo",
|
|
36
|
+
"node": {
|
|
37
|
+
"adult": false,
|
|
38
|
+
"backdrop_path": "/2fNfuntrA7I4SGNTaGF0deLMiwW.jpg",
|
|
39
|
+
"id": 302331,
|
|
40
|
+
"media_type": "Collection",
|
|
41
|
+
"name": "LEGO Star Wars Collection",
|
|
42
|
+
"original_language": "en",
|
|
43
|
+
"original_name": "LEGO Star Wars Collection",
|
|
44
|
+
"overview": "A set of animated LEGO movies based on the Star Wars universe.",
|
|
45
|
+
"poster_path": "/sHlgKW5hlQvwJseJkmnkSmL3YDI.jpg",
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"cursor": "MTQxNzQ4Ojp7InF1ZXJ5Ijoic3RhciB3YXJzIiwic2VhcmNoVHlwZSI6IkNPTExFQ1RJT04ifTo6c2VhcmNo",
|
|
50
|
+
"node": {
|
|
51
|
+
"adult": false,
|
|
52
|
+
"backdrop_path": null,
|
|
53
|
+
"id": 141748,
|
|
54
|
+
"media_type": "Collection",
|
|
55
|
+
"name": "Robot Chicken - Star Wars Collection",
|
|
56
|
+
"original_language": "en",
|
|
57
|
+
"original_name": "Robot Chicken - Star Wars Collection",
|
|
58
|
+
"overview": "A series of Robot Chicken TV films parodying the Star Wars films.",
|
|
59
|
+
"poster_path": "/m6tP4z5IIk8lIsBTpXu5H0B8hO3.jpg",
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"cursor": "ODIwNjgzOjp7InF1ZXJ5Ijoic3RhciB3YXJzIiwic2VhcmNoVHlwZSI6IkNPTExFQ1RJT04ifTo6c2VhcmNo",
|
|
64
|
+
"node": {
|
|
65
|
+
"adult": false,
|
|
66
|
+
"backdrop_path": "/xik8zUf4ItBugwkxn8gsWvSFODT.jpg",
|
|
67
|
+
"id": 820683,
|
|
68
|
+
"media_type": "Collection",
|
|
69
|
+
"name": "Rian Johnson Star Wars Trilogy",
|
|
70
|
+
"original_language": "en",
|
|
71
|
+
"original_name": "Rian Johnson Star Wars Trilogy",
|
|
72
|
+
"overview": "An upcoming Star Wars series set separate from the Skywalker saga from director Rian Johnson.",
|
|
73
|
+
"poster_path": "/2vQTTQOJsPAY8fw5KiYGFbAePhT.jpg",
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
],
|
|
77
|
+
"errors": [],
|
|
78
|
+
"nodes": [
|
|
79
|
+
{
|
|
80
|
+
"adult": false,
|
|
81
|
+
"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg",
|
|
82
|
+
"id": 10,
|
|
83
|
+
"media_type": "Collection",
|
|
84
|
+
"name": "Star Wars Collection",
|
|
85
|
+
"original_language": "en",
|
|
86
|
+
"original_name": "Star Wars Collection",
|
|
87
|
+
"overview": "An epic space-opera theatrical film series, which depicts the adventures of various characters "a long time ago in a galaxy far, far away…."",
|
|
88
|
+
"poster_path": "/tdQzRSk4PXX6hzjLcQWHafYtZTI.jpg",
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"adult": false,
|
|
92
|
+
"backdrop_path": null,
|
|
93
|
+
"id": 423877,
|
|
94
|
+
"media_type": "Collection",
|
|
95
|
+
"name": "Turkish Star Wars",
|
|
96
|
+
"original_language": "en",
|
|
97
|
+
"original_name": "Turkish Star Wars",
|
|
98
|
+
"overview": "Dünyayı Kurtaran Adam (The Man Who Saved the World) and Dünyayi Kurtaran Adam'in Oglu (The Son of the Man who Saved the World) is a series of Turkish adventure films also known as Turkish Star Wars because of its notorious use of unauthorized footage from Star Wars and other movies worked into the film.",
|
|
99
|
+
"poster_path": null,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"adult": false,
|
|
103
|
+
"backdrop_path": "/2fNfuntrA7I4SGNTaGF0deLMiwW.jpg",
|
|
104
|
+
"id": 302331,
|
|
105
|
+
"media_type": "Collection",
|
|
106
|
+
"name": "LEGO Star Wars Collection",
|
|
107
|
+
"original_language": "en",
|
|
108
|
+
"original_name": "LEGO Star Wars Collection",
|
|
109
|
+
"overview": "A set of animated LEGO movies based on the Star Wars universe.",
|
|
110
|
+
"poster_path": "/sHlgKW5hlQvwJseJkmnkSmL3YDI.jpg",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"adult": false,
|
|
114
|
+
"backdrop_path": null,
|
|
115
|
+
"id": 141748,
|
|
116
|
+
"media_type": "Collection",
|
|
117
|
+
"name": "Robot Chicken - Star Wars Collection",
|
|
118
|
+
"original_language": "en",
|
|
119
|
+
"original_name": "Robot Chicken - Star Wars Collection",
|
|
120
|
+
"overview": "A series of Robot Chicken TV films parodying the Star Wars films.",
|
|
121
|
+
"poster_path": "/m6tP4z5IIk8lIsBTpXu5H0B8hO3.jpg",
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"adult": false,
|
|
125
|
+
"backdrop_path": "/xik8zUf4ItBugwkxn8gsWvSFODT.jpg",
|
|
126
|
+
"id": 820683,
|
|
127
|
+
"media_type": "Collection",
|
|
128
|
+
"name": "Rian Johnson Star Wars Trilogy",
|
|
129
|
+
"original_language": "en",
|
|
130
|
+
"original_name": "Rian Johnson Star Wars Trilogy",
|
|
131
|
+
"overview": "An upcoming Star Wars series set separate from the Skywalker saga from director Rian Johnson.",
|
|
132
|
+
"poster_path": "/2vQTTQOJsPAY8fw5KiYGFbAePhT.jpg",
|
|
133
|
+
},
|
|
134
|
+
],
|
|
135
|
+
"pageInfo": {
|
|
136
|
+
"endCursor": "ODIwNjgzOjp7InF1ZXJ5Ijoic3RhciB3YXJzIiwic2VhcmNoVHlwZSI6IkNPTExFQ1RJT04ifTo6c2VhcmNo",
|
|
137
|
+
"hasNextPage": true,
|
|
138
|
+
"hasPreviousPage": false,
|
|
139
|
+
"startCursor": "MTA6OnsicXVlcnkiOiJzdGFyIHdhcnMiLCJzZWFyY2hUeXBlIjoiQ09MTEVDVElPTiJ9OjpzZWFyY2g=",
|
|
140
|
+
},
|
|
141
|
+
"totalCount": 6,
|
|
142
|
+
}
|
|
143
|
+
`;
|
|
144
|
+
|
|
145
|
+
exports[`resolveSearch > collections when the second 5 are requested should return the correct response 1`] = `
|
|
146
|
+
{
|
|
147
|
+
"edges": [
|
|
148
|
+
{
|
|
149
|
+
"cursor": "MTMzODMwOjp7InF1ZXJ5Ijoic3RhciB3YXJzIiwic2VhcmNoVHlwZSI6IkNPTExFQ1RJT04ifTo6c2VhcmNo",
|
|
150
|
+
"node": {
|
|
151
|
+
"adult": false,
|
|
152
|
+
"backdrop_path": "/VXwSW7UGuNScCTy5V5H9pgioir.jpg",
|
|
153
|
+
"id": 133830,
|
|
154
|
+
"media_type": "Collection",
|
|
155
|
+
"name": "Star Wars: The Ewok Adventures Collection",
|
|
156
|
+
"original_language": "en",
|
|
157
|
+
"original_name": "Star Wars: The Ewok Adventures Collection",
|
|
158
|
+
"overview": "The Ewok Adventures is a 1984 American made-for-TV film duology based in the Star Wars setting. It was released theatrically in Europe as Caravan of Courage: An Ewok Adventure, and is known by that title today. The film focuses on the struggles of a brother and sister, stranded on the forest moon of Endor, in locating their parents, who have been kidnapped by a monster known as the Gorax. The film is set sometime between the fifth and sixth episodes of the Star Wars saga. It is the first of two spin-off films featuring the Ewoks from Star Wars Episode VI: Return of the Jedi. A sequel to this movie released in 1985. While the sequel's working title was simply Ewoks II, it was released as Ewoks: The Battle for Endor.",
|
|
159
|
+
"poster_path": "/vSrIbcWQJ3IL0R5DoWLh0c7HMTz.jpg",
|
|
160
|
+
},
|
|
161
|
+
},
|
|
162
|
+
],
|
|
163
|
+
"errors": [],
|
|
164
|
+
"nodes": [
|
|
165
|
+
{
|
|
166
|
+
"adult": false,
|
|
167
|
+
"backdrop_path": "/VXwSW7UGuNScCTy5V5H9pgioir.jpg",
|
|
168
|
+
"id": 133830,
|
|
169
|
+
"media_type": "Collection",
|
|
170
|
+
"name": "Star Wars: The Ewok Adventures Collection",
|
|
171
|
+
"original_language": "en",
|
|
172
|
+
"original_name": "Star Wars: The Ewok Adventures Collection",
|
|
173
|
+
"overview": "The Ewok Adventures is a 1984 American made-for-TV film duology based in the Star Wars setting. It was released theatrically in Europe as Caravan of Courage: An Ewok Adventure, and is known by that title today. The film focuses on the struggles of a brother and sister, stranded on the forest moon of Endor, in locating their parents, who have been kidnapped by a monster known as the Gorax. The film is set sometime between the fifth and sixth episodes of the Star Wars saga. It is the first of two spin-off films featuring the Ewoks from Star Wars Episode VI: Return of the Jedi. A sequel to this movie released in 1985. While the sequel's working title was simply Ewoks II, it was released as Ewoks: The Battle for Endor.",
|
|
174
|
+
"poster_path": "/vSrIbcWQJ3IL0R5DoWLh0c7HMTz.jpg",
|
|
175
|
+
},
|
|
176
|
+
],
|
|
177
|
+
"pageInfo": {
|
|
178
|
+
"endCursor": "MTMzODMwOjp7InF1ZXJ5Ijoic3RhciB3YXJzIiwic2VhcmNoVHlwZSI6IkNPTExFQ1RJT04ifTo6c2VhcmNo",
|
|
179
|
+
"hasNextPage": false,
|
|
180
|
+
"hasPreviousPage": true,
|
|
181
|
+
"startCursor": "MTMzODMwOjp7InF1ZXJ5Ijoic3RhciB3YXJzIiwic2VhcmNoVHlwZSI6IkNPTExFQ1RJT04ifTo6c2VhcmNo",
|
|
182
|
+
},
|
|
183
|
+
"totalCount": 6,
|
|
184
|
+
}
|
|
185
|
+
`;
|
|
186
|
+
|
|
187
|
+
exports[`resolveSearch > companies when the last 5 are requested should return the correct response 1`] = `
|
|
188
|
+
{
|
|
189
|
+
"edges": [
|
|
190
|
+
{
|
|
191
|
+
"cursor": "MzU4NjY6OnsicXVlcnkiOiJvcmlvbiIsInNlYXJjaFR5cGUiOiJDT01QQU5ZIn06OnNlYXJjaA==",
|
|
192
|
+
"node": {
|
|
193
|
+
"id": 35866,
|
|
194
|
+
"logo_path": null,
|
|
195
|
+
"media_type": "Company",
|
|
196
|
+
"name": "Orion Pictures Television",
|
|
197
|
+
"origin_country": "",
|
|
198
|
+
},
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"cursor": "MTM1NDY3Ojp7InF1ZXJ5Ijoib3Jpb24iLCJzZWFyY2hUeXBlIjoiQ09NUEFOWSJ9OjpzZWFyY2g=",
|
|
202
|
+
"node": {
|
|
203
|
+
"id": 135467,
|
|
204
|
+
"logo_path": null,
|
|
205
|
+
"media_type": "Company",
|
|
206
|
+
"name": "Orion Television Entertainment",
|
|
207
|
+
"origin_country": "",
|
|
208
|
+
},
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"cursor": "MTQwNzo6eyJxdWVyeSI6Im9yaW9uIiwic2VhcmNoVHlwZSI6IkNPTVBBTlkifTo6c2VhcmNo",
|
|
212
|
+
"node": {
|
|
213
|
+
"id": 1407,
|
|
214
|
+
"logo_path": null,
|
|
215
|
+
"media_type": "Company",
|
|
216
|
+
"name": "Paramount-Orion Filmproduktion",
|
|
217
|
+
"origin_country": "",
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"cursor": "MTQ5NDA3Ojp7InF1ZXJ5Ijoib3Jpb24iLCJzZWFyY2hUeXBlIjoiQ09NUEFOWSJ9OjpzZWFyY2g=",
|
|
222
|
+
"node": {
|
|
223
|
+
"id": 149407,
|
|
224
|
+
"logo_path": null,
|
|
225
|
+
"media_type": "Company",
|
|
226
|
+
"name": "Orion Cinema e Vídeo",
|
|
227
|
+
"origin_country": "",
|
|
228
|
+
},
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"cursor": "NDQ1NzU6OnsicXVlcnkiOiJvcmlvbiIsInNlYXJjaFR5cGUiOiJDT01QQU5ZIn06OnNlYXJjaA==",
|
|
232
|
+
"node": {
|
|
233
|
+
"id": 44575,
|
|
234
|
+
"logo_path": null,
|
|
235
|
+
"media_type": "Company",
|
|
236
|
+
"name": "Orione Cinematografica",
|
|
237
|
+
"origin_country": "",
|
|
238
|
+
},
|
|
239
|
+
},
|
|
240
|
+
],
|
|
241
|
+
"errors": [],
|
|
242
|
+
"nodes": [
|
|
243
|
+
{
|
|
244
|
+
"id": 35866,
|
|
245
|
+
"logo_path": null,
|
|
246
|
+
"media_type": "Company",
|
|
247
|
+
"name": "Orion Pictures Television",
|
|
248
|
+
"origin_country": "",
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"id": 135467,
|
|
252
|
+
"logo_path": null,
|
|
253
|
+
"media_type": "Company",
|
|
254
|
+
"name": "Orion Television Entertainment",
|
|
255
|
+
"origin_country": "",
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"id": 1407,
|
|
259
|
+
"logo_path": null,
|
|
260
|
+
"media_type": "Company",
|
|
261
|
+
"name": "Paramount-Orion Filmproduktion",
|
|
262
|
+
"origin_country": "",
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"id": 149407,
|
|
266
|
+
"logo_path": null,
|
|
267
|
+
"media_type": "Company",
|
|
268
|
+
"name": "Orion Cinema e Vídeo",
|
|
269
|
+
"origin_country": "",
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"id": 44575,
|
|
273
|
+
"logo_path": null,
|
|
274
|
+
"media_type": "Company",
|
|
275
|
+
"name": "Orione Cinematografica",
|
|
276
|
+
"origin_country": "",
|
|
277
|
+
},
|
|
278
|
+
],
|
|
279
|
+
"pageInfo": {
|
|
280
|
+
"endCursor": "NDQ1NzU6OnsicXVlcnkiOiJvcmlvbiIsInNlYXJjaFR5cGUiOiJDT01QQU5ZIn06OnNlYXJjaA==",
|
|
281
|
+
"hasNextPage": false,
|
|
282
|
+
"hasPreviousPage": true,
|
|
283
|
+
"startCursor": "MzU4NjY6OnsicXVlcnkiOiJvcmlvbiIsInNlYXJjaFR5cGUiOiJDT01QQU5ZIn06OnNlYXJjaA==",
|
|
284
|
+
},
|
|
285
|
+
"totalCount": 19,
|
|
286
|
+
}
|
|
287
|
+
`;
|
|
288
|
+
|
|
289
|
+
exports[`resolveSearch > companies when the second to last 5 are requested should return the correct response 1`] = `
|
|
290
|
+
{
|
|
291
|
+
"edges": [
|
|
292
|
+
{
|
|
293
|
+
"cursor": "MjMxMjU6OnsicXVlcnkiOiJvcmlvbiIsInNlYXJjaFR5cGUiOiJDT01QQU5ZIn06OnNlYXJjaA==",
|
|
294
|
+
"node": {
|
|
295
|
+
"id": 23125,
|
|
296
|
+
"logo_path": null,
|
|
297
|
+
"media_type": "Company",
|
|
298
|
+
"name": "Orion Filmproduktion",
|
|
299
|
+
"origin_country": "",
|
|
300
|
+
},
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"cursor": "MTYyNzk4Ojp7InF1ZXJ5Ijoib3Jpb24iLCJzZWFyY2hUeXBlIjoiQ09NUEFOWSJ9OjpzZWFyY2g=",
|
|
304
|
+
"node": {
|
|
305
|
+
"id": 162798,
|
|
306
|
+
"logo_path": null,
|
|
307
|
+
"media_type": "Company",
|
|
308
|
+
"name": "The Orion Foundation",
|
|
309
|
+
"origin_country": "",
|
|
310
|
+
},
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"cursor": "MTAyMTI6OnsicXVlcnkiOiJvcmlvbiIsInNlYXJjaFR5cGUiOiJDT01QQU5ZIn06OnNlYXJjaA==",
|
|
314
|
+
"node": {
|
|
315
|
+
"id": 10212,
|
|
316
|
+
"logo_path": null,
|
|
317
|
+
"media_type": "Company",
|
|
318
|
+
"name": "Orion-Nova Productions",
|
|
319
|
+
"origin_country": "",
|
|
320
|
+
},
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"cursor": "MTQxNTA6OnsicXVlcnkiOiJvcmlvbiIsInNlYXJjaFR5cGUiOiJDT01QQU5ZIn06OnNlYXJjaA==",
|
|
324
|
+
"node": {
|
|
325
|
+
"id": 14150,
|
|
326
|
+
"logo_path": null,
|
|
327
|
+
"media_type": "Company",
|
|
328
|
+
"name": "Orion Pictures Corporation",
|
|
329
|
+
"origin_country": "",
|
|
330
|
+
},
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"cursor": "MTAyMzc3Ojp7InF1ZXJ5Ijoib3Jpb24iLCJzZWFyY2hUeXBlIjoiQ09NUEFOWSJ9OjpzZWFyY2g=",
|
|
334
|
+
"node": {
|
|
335
|
+
"id": 102377,
|
|
336
|
+
"logo_path": null,
|
|
337
|
+
"media_type": "Company",
|
|
338
|
+
"name": "Les Productions Orion",
|
|
339
|
+
"origin_country": "",
|
|
340
|
+
},
|
|
341
|
+
},
|
|
342
|
+
],
|
|
343
|
+
"errors": [],
|
|
344
|
+
"nodes": [
|
|
345
|
+
{
|
|
346
|
+
"id": 23125,
|
|
347
|
+
"logo_path": null,
|
|
348
|
+
"media_type": "Company",
|
|
349
|
+
"name": "Orion Filmproduktion",
|
|
350
|
+
"origin_country": "",
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"id": 162798,
|
|
354
|
+
"logo_path": null,
|
|
355
|
+
"media_type": "Company",
|
|
356
|
+
"name": "The Orion Foundation",
|
|
357
|
+
"origin_country": "",
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"id": 10212,
|
|
361
|
+
"logo_path": null,
|
|
362
|
+
"media_type": "Company",
|
|
363
|
+
"name": "Orion-Nova Productions",
|
|
364
|
+
"origin_country": "",
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"id": 14150,
|
|
368
|
+
"logo_path": null,
|
|
369
|
+
"media_type": "Company",
|
|
370
|
+
"name": "Orion Pictures Corporation",
|
|
371
|
+
"origin_country": "",
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"id": 102377,
|
|
375
|
+
"logo_path": null,
|
|
376
|
+
"media_type": "Company",
|
|
377
|
+
"name": "Les Productions Orion",
|
|
378
|
+
"origin_country": "",
|
|
379
|
+
},
|
|
380
|
+
],
|
|
381
|
+
"pageInfo": {
|
|
382
|
+
"endCursor": "MTAyMzc3Ojp7InF1ZXJ5Ijoib3Jpb24iLCJzZWFyY2hUeXBlIjoiQ09NUEFOWSJ9OjpzZWFyY2g=",
|
|
383
|
+
"hasNextPage": true,
|
|
384
|
+
"hasPreviousPage": true,
|
|
385
|
+
"startCursor": "MjMxMjU6OnsicXVlcnkiOiJvcmlvbiIsInNlYXJjaFR5cGUiOiJDT01QQU5ZIn06OnNlYXJjaA==",
|
|
386
|
+
},
|
|
387
|
+
"totalCount": 19,
|
|
388
|
+
}
|
|
389
|
+
`;
|
|
390
|
+
|
|
391
|
+
exports[`resolveSearch > movies when the first 18 are requested should return the correct response 1`] = `
|
|
392
|
+
{
|
|
393
|
+
"edges": [
|
|
394
|
+
{
|
|
395
|
+
"cursor": "NjcxOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
396
|
+
"node": {
|
|
397
|
+
"adult": false,
|
|
398
|
+
"backdrop_path": "/pajKyahlPPggk0k5LiA2v4kwWqn.jpg",
|
|
399
|
+
"genre_ids": [
|
|
400
|
+
12,
|
|
401
|
+
14,
|
|
402
|
+
],
|
|
403
|
+
"id": 671,
|
|
404
|
+
"media_type": "Movie",
|
|
405
|
+
"original_language": "en",
|
|
406
|
+
"original_title": "Harry Potter and the Philosopher's Stone",
|
|
407
|
+
"overview": "Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard—with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths—and about the villain who's to blame.",
|
|
408
|
+
"popularity": 284.991,
|
|
409
|
+
"poster_path": "/wuMc08IPKEatf9rnMNXvIDxqP4W.jpg",
|
|
410
|
+
"release_date": "2001-11-16",
|
|
411
|
+
"title": "Harry Potter and the Philosopher's Stone",
|
|
412
|
+
"video": false,
|
|
413
|
+
"vote_average": 7.9,
|
|
414
|
+
"vote_count": 21237,
|
|
415
|
+
},
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"cursor": "NjcyOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
419
|
+
"node": {
|
|
420
|
+
"adult": false,
|
|
421
|
+
"backdrop_path": "/1stUIsjawROZxjiCMtqqXqgfZWC.jpg",
|
|
422
|
+
"genre_ids": [
|
|
423
|
+
12,
|
|
424
|
+
14,
|
|
425
|
+
],
|
|
426
|
+
"id": 672,
|
|
427
|
+
"media_type": "Movie",
|
|
428
|
+
"original_language": "en",
|
|
429
|
+
"original_title": "Harry Potter and the Chamber of Secrets",
|
|
430
|
+
"overview": "Cars fly, trees fight back, and a mysterious house-elf comes to warn Harry Potter at the start of his second year at Hogwarts. Adventure and danger await when bloody writing on a wall announces: The Chamber Of Secrets Has Been Opened. To save Hogwarts will require all of Harry, Ron and Hermione’s magical abilities and courage.",
|
|
431
|
+
"popularity": 267.281,
|
|
432
|
+
"poster_path": "/sdEOH0992YZ0QSxgXNIGLq1ToUi.jpg",
|
|
433
|
+
"release_date": "2002-11-13",
|
|
434
|
+
"title": "Harry Potter and the Chamber of Secrets",
|
|
435
|
+
"video": false,
|
|
436
|
+
"vote_average": 7.7,
|
|
437
|
+
"vote_count": 17152,
|
|
438
|
+
},
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"cursor": "NzY3Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
442
|
+
"node": {
|
|
443
|
+
"adult": false,
|
|
444
|
+
"backdrop_path": "/kT8bDEAgEYBKhRJtqM97qTw6uRW.jpg",
|
|
445
|
+
"genre_ids": [
|
|
446
|
+
12,
|
|
447
|
+
14,
|
|
448
|
+
],
|
|
449
|
+
"id": 767,
|
|
450
|
+
"media_type": "Movie",
|
|
451
|
+
"original_language": "en",
|
|
452
|
+
"original_title": "Harry Potter and the Half-Blood Prince",
|
|
453
|
+
"overview": "As Lord Voldemort tightens his grip on both the Muggle and wizarding worlds, Hogwarts is no longer a safe haven. Harry suspects perils may even lie within the castle, but Dumbledore is more intent upon preparing him for the final battle fast approaching. Together they work to find the key to unlock Voldemorts defenses and to this end, Dumbledore recruits his old friend and colleague Horace Slughorn, whom he believes holds crucial information. Even as the decisive showdown looms, romance blossoms for Harry, Ron, Hermione and their classmates. Love is in the air, but danger lies ahead and Hogwarts may never be the same again.",
|
|
454
|
+
"popularity": 211.926,
|
|
455
|
+
"poster_path": "/z7uo9zmQdQwU5ZJHFpv2Upl30i1.jpg",
|
|
456
|
+
"release_date": "2009-07-07",
|
|
457
|
+
"title": "Harry Potter and the Half-Blood Prince",
|
|
458
|
+
"video": false,
|
|
459
|
+
"vote_average": 7.7,
|
|
460
|
+
"vote_count": 15200,
|
|
461
|
+
},
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"cursor": "NjczOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
465
|
+
"node": {
|
|
466
|
+
"adult": false,
|
|
467
|
+
"backdrop_path": "/obKmfNexgL4ZP5cAmzdL4KbHHYX.jpg",
|
|
468
|
+
"genre_ids": [
|
|
469
|
+
12,
|
|
470
|
+
14,
|
|
471
|
+
],
|
|
472
|
+
"id": 673,
|
|
473
|
+
"media_type": "Movie",
|
|
474
|
+
"original_language": "en",
|
|
475
|
+
"original_title": "Harry Potter and the Prisoner of Azkaban",
|
|
476
|
+
"overview": "Year three at Hogwarts means new fun and challenges as Harry learns the delicate art of approaching a Hippogriff, transforming shape-shifting Boggarts into hilarity and even turning back time. But the term also brings danger: soul-sucking Dementors hover over the school, an ally of the accursed He-Who-Cannot-Be-Named lurks within the castle walls, and fearsome wizard Sirius Black escapes Azkaban. And Harry will confront them all.",
|
|
477
|
+
"popularity": 244.676,
|
|
478
|
+
"poster_path": "/aWxwnYoe8p2d2fcxOqtvAtJ72Rw.jpg",
|
|
479
|
+
"release_date": "2004-05-31",
|
|
480
|
+
"title": "Harry Potter and the Prisoner of Azkaban",
|
|
481
|
+
"video": false,
|
|
482
|
+
"vote_average": 8,
|
|
483
|
+
"vote_count": 16864,
|
|
484
|
+
},
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"cursor": "Njc0Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
488
|
+
"node": {
|
|
489
|
+
"adult": false,
|
|
490
|
+
"backdrop_path": "/8f9dnOtpArDrOMEylpSN9Sc6fuz.jpg",
|
|
491
|
+
"genre_ids": [
|
|
492
|
+
12,
|
|
493
|
+
14,
|
|
494
|
+
10751,
|
|
495
|
+
],
|
|
496
|
+
"id": 674,
|
|
497
|
+
"media_type": "Movie",
|
|
498
|
+
"original_language": "en",
|
|
499
|
+
"original_title": "Harry Potter and the Goblet of Fire",
|
|
500
|
+
"overview": "When Harry Potter's name emerges from the Goblet of Fire, he becomes a competitor in a grueling battle for glory among three wizarding schools—the Triwizard Tournament. But since Harry never submitted his name for the Tournament, who did? Now Harry must confront a deadly dragon, fierce water demons and an enchanted maze only to find himself in the cruel grasp of He Who Must Not Be Named.",
|
|
501
|
+
"popularity": 208.542,
|
|
502
|
+
"poster_path": "/fECBtHlr0RB3foNHDiCBXeg9Bv9.jpg",
|
|
503
|
+
"release_date": "2005-11-16",
|
|
504
|
+
"title": "Harry Potter and the Goblet of Fire",
|
|
505
|
+
"video": false,
|
|
506
|
+
"vote_average": 7.8,
|
|
507
|
+
"vote_count": 16209,
|
|
508
|
+
},
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"cursor": "MTI0NDU6OnsicXVlcnkiOiJoYXJyeSBwb3R0ZXIiLCJzZWFyY2hUeXBlIjoiTU9WSUUifTo6c2VhcmNo",
|
|
512
|
+
"node": {
|
|
513
|
+
"adult": false,
|
|
514
|
+
"backdrop_path": "/n5A7brJCjejceZmHyujwUTVgQNC.jpg",
|
|
515
|
+
"genre_ids": [
|
|
516
|
+
14,
|
|
517
|
+
12,
|
|
518
|
+
],
|
|
519
|
+
"id": 12445,
|
|
520
|
+
"media_type": "Movie",
|
|
521
|
+
"original_language": "en",
|
|
522
|
+
"original_title": "Harry Potter and the Deathly Hallows: Part 2",
|
|
523
|
+
"overview": "Harry, Ron and Hermione continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards, Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.",
|
|
524
|
+
"popularity": 218.733,
|
|
525
|
+
"poster_path": "/da22ZBmrDOXOCDRvr8Gic8ldhv4.jpg",
|
|
526
|
+
"release_date": "2011-07-07",
|
|
527
|
+
"title": "Harry Potter and the Deathly Hallows: Part 2",
|
|
528
|
+
"video": false,
|
|
529
|
+
"vote_average": 8.1,
|
|
530
|
+
"vote_count": 16322,
|
|
531
|
+
},
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"cursor": "MTI0NDQ6OnsicXVlcnkiOiJoYXJyeSBwb3R0ZXIiLCJzZWFyY2hUeXBlIjoiTU9WSUUifTo6c2VhcmNo",
|
|
535
|
+
"node": {
|
|
536
|
+
"adult": false,
|
|
537
|
+
"backdrop_path": "/AqLcLsGGTzAjm3pCCq0CZCQrp6m.jpg",
|
|
538
|
+
"genre_ids": [
|
|
539
|
+
12,
|
|
540
|
+
14,
|
|
541
|
+
],
|
|
542
|
+
"id": 12444,
|
|
543
|
+
"media_type": "Movie",
|
|
544
|
+
"original_language": "en",
|
|
545
|
+
"original_title": "Harry Potter and the Deathly Hallows: Part 1",
|
|
546
|
+
"overview": "Harry, Ron and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes, putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose, the world is more dangerous than ever.",
|
|
547
|
+
"popularity": 211.438,
|
|
548
|
+
"poster_path": "/f1geQ0I9UETRF1ed30voZfw8zT.jpg",
|
|
549
|
+
"release_date": "2010-10-17",
|
|
550
|
+
"title": "Harry Potter and the Deathly Hallows: Part 1",
|
|
551
|
+
"video": false,
|
|
552
|
+
"vote_average": 7.8,
|
|
553
|
+
"vote_count": 15146,
|
|
554
|
+
},
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"cursor": "Njc1Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
558
|
+
"node": {
|
|
559
|
+
"adult": false,
|
|
560
|
+
"backdrop_path": "/bsaA9qtIR6VTDQykXdBzJc8V5rS.jpg",
|
|
561
|
+
"genre_ids": [
|
|
562
|
+
12,
|
|
563
|
+
14,
|
|
564
|
+
9648,
|
|
565
|
+
],
|
|
566
|
+
"id": 675,
|
|
567
|
+
"media_type": "Movie",
|
|
568
|
+
"original_language": "en",
|
|
569
|
+
"original_title": "Harry Potter and the Order of the Phoenix",
|
|
570
|
+
"overview": "The rebellion begins! Lord Voldemort has returned, but the Ministry of Magic is doing everything it can to keep the wizarding world from knowing the truth – including appointing Ministry official Dolores Umbridge as the new Defence Against the Dark Arts professor at Hogwarts. When Umbridge refuses to teach practical defensive magic, Ron and Hermione convince Harry to secretly train a select group of students for the wizarding war that lies ahead. A terrifying showdown between good and evil awaits in this enthralling film version of the fifth novel in J.K. Rowling’s Harry Potter series. Prepare for battle!",
|
|
571
|
+
"popularity": 177.862,
|
|
572
|
+
"poster_path": "/s836PRwHkLjrOJrfW0eo7B4NJOf.jpg",
|
|
573
|
+
"release_date": "2007-06-28",
|
|
574
|
+
"title": "Harry Potter and the Order of the Phoenix",
|
|
575
|
+
"video": false,
|
|
576
|
+
"vote_average": 7.7,
|
|
577
|
+
"vote_count": 15441,
|
|
578
|
+
},
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"cursor": "NDgzODk4Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
582
|
+
"node": {
|
|
583
|
+
"adult": false,
|
|
584
|
+
"backdrop_path": "/4LOxoeZWt5wr9mooxEZRFK96lDd.jpg",
|
|
585
|
+
"genre_ids": [
|
|
586
|
+
99,
|
|
587
|
+
],
|
|
588
|
+
"id": 483898,
|
|
589
|
+
"media_type": "Movie",
|
|
590
|
+
"original_language": "en",
|
|
591
|
+
"original_title": "50 Greatest Harry Potter Moments",
|
|
592
|
+
"overview": "To mark the release two weeks ago of the eighth and final movie in the series, Robbie Coltrane narrates a countdown of the movie franchise's best moments. From Harry's first meeting with Ron and Hermione aboard the Hogwarts Express through to magical mysteries.",
|
|
593
|
+
"popularity": 87.372,
|
|
594
|
+
"poster_path": "/g1xiBoLD6v3ZaXPa4QtuXiQeYKW.jpg",
|
|
595
|
+
"release_date": "2011-07-27",
|
|
596
|
+
"title": "50 Greatest Harry Potter Moments",
|
|
597
|
+
"video": false,
|
|
598
|
+
"vote_average": 7.9,
|
|
599
|
+
"vote_count": 37,
|
|
600
|
+
},
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"cursor": "ODMzNjI5Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
604
|
+
"node": {
|
|
605
|
+
"adult": false,
|
|
606
|
+
"backdrop_path": null,
|
|
607
|
+
"genre_ids": [
|
|
608
|
+
99,
|
|
609
|
+
],
|
|
610
|
+
"id": 833629,
|
|
611
|
+
"media_type": "Movie",
|
|
612
|
+
"original_language": "en",
|
|
613
|
+
"original_title": "Creating the World of Harry Potter, Part 2: Characters",
|
|
614
|
+
"overview": "Dive deeper into the World of Harry Potter by focusing on the characters in the film and going behind the scenes with filmmakers.",
|
|
615
|
+
"popularity": 47.008,
|
|
616
|
+
"poster_path": "/cKkb3UlCQl86SYEYi6aGtfGnFbf.jpg",
|
|
617
|
+
"release_date": "2009-12-08",
|
|
618
|
+
"title": "Creating the World of Harry Potter, Part 2: Characters",
|
|
619
|
+
"video": false,
|
|
620
|
+
"vote_average": 4,
|
|
621
|
+
"vote_count": 2,
|
|
622
|
+
},
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"cursor": "NDgyNDA4Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
626
|
+
"node": {
|
|
627
|
+
"adult": false,
|
|
628
|
+
"backdrop_path": "/mjCYpJXCBYDZgMr1U1KZcFgFDfC.jpg",
|
|
629
|
+
"genre_ids": [
|
|
630
|
+
99,
|
|
631
|
+
],
|
|
632
|
+
"id": 482408,
|
|
633
|
+
"media_type": "Movie",
|
|
634
|
+
"original_language": "en",
|
|
635
|
+
"original_title": "Harry Potter: A History Of Magic",
|
|
636
|
+
"overview": "A thrilling journey through legends, belief and folklore, this film goes behind the scenes with the British Library as they search to tell that story through objects in their collection, in an ambitious new exhibition: Harry Potter: A History Of Magic. J.K. Rowling, who is lending unseen manuscripts, drawings and drafts from her private archives (which will sit alongside treasures from the British Library, as well as original drafts and drawings from Jim Kay) talks about some of the personal items she has lent to the exhibition and gives new insight into her writing, looking at some of the objects from the exhibition that have fired her imagination.",
|
|
637
|
+
"popularity": 21.451,
|
|
638
|
+
"poster_path": "/geike7VgTrftxwzcvND4dRdZdAv.jpg",
|
|
639
|
+
"release_date": "2017-10-28",
|
|
640
|
+
"title": "Harry Potter: A History Of Magic",
|
|
641
|
+
"video": false,
|
|
642
|
+
"vote_average": 6.9,
|
|
643
|
+
"vote_count": 33,
|
|
644
|
+
},
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"cursor": "ODgxNTU0Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
648
|
+
"node": {
|
|
649
|
+
"adult": false,
|
|
650
|
+
"backdrop_path": null,
|
|
651
|
+
"genre_ids": [
|
|
652
|
+
14,
|
|
653
|
+
],
|
|
654
|
+
"id": 881554,
|
|
655
|
+
"media_type": "Movie",
|
|
656
|
+
"original_language": "en",
|
|
657
|
+
"original_title": "Harry Potter: Different Perspective",
|
|
658
|
+
"overview": "",
|
|
659
|
+
"popularity": 16.809,
|
|
660
|
+
"poster_path": "/APuWMuQGqHZMG236ZTsMhNpUXF.jpg",
|
|
661
|
+
"release_date": "2021-08-10",
|
|
662
|
+
"title": "Harry Potter: Different Perspective",
|
|
663
|
+
"video": false,
|
|
664
|
+
"vote_average": 0,
|
|
665
|
+
"vote_count": 0,
|
|
666
|
+
},
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"cursor": "ODMzNjM1Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
670
|
+
"node": {
|
|
671
|
+
"adult": false,
|
|
672
|
+
"backdrop_path": null,
|
|
673
|
+
"genre_ids": [
|
|
674
|
+
99,
|
|
675
|
+
],
|
|
676
|
+
"id": 833635,
|
|
677
|
+
"media_type": "Movie",
|
|
678
|
+
"original_language": "en",
|
|
679
|
+
"original_title": "Creating the World of Harry Potter, Part 3: Creatures",
|
|
680
|
+
"overview": "Go behind the scenes in the World of Harry Potter and explore the magic behind the creatures throughout the films.",
|
|
681
|
+
"popularity": 27.583,
|
|
682
|
+
"poster_path": "/w4aWl5YsmYPTdVaopHaIf5eRKB6.jpg",
|
|
683
|
+
"release_date": "2009-10-19",
|
|
684
|
+
"title": "Creating the World of Harry Potter, Part 3: Creatures",
|
|
685
|
+
"video": false,
|
|
686
|
+
"vote_average": 6,
|
|
687
|
+
"vote_count": 1,
|
|
688
|
+
},
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"cursor": "ODMzNjQ5Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
692
|
+
"node": {
|
|
693
|
+
"adult": false,
|
|
694
|
+
"backdrop_path": null,
|
|
695
|
+
"genre_ids": [
|
|
696
|
+
99,
|
|
697
|
+
],
|
|
698
|
+
"id": 833649,
|
|
699
|
+
"media_type": "Movie",
|
|
700
|
+
"original_language": "en",
|
|
701
|
+
"original_title": "Creating the World of Harry Potter, Part 7: Story",
|
|
702
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
703
|
+
"popularity": 27.031,
|
|
704
|
+
"poster_path": "/yTAvJglf38zM0WFAfb2QRNubTXi.jpg",
|
|
705
|
+
"release_date": "2012-09-07",
|
|
706
|
+
"title": "Creating the World of Harry Potter, Part 7: Story",
|
|
707
|
+
"video": true,
|
|
708
|
+
"vote_average": 0,
|
|
709
|
+
"vote_count": 0,
|
|
710
|
+
},
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"cursor": "ODMwNDE4Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
714
|
+
"node": {
|
|
715
|
+
"adult": false,
|
|
716
|
+
"backdrop_path": null,
|
|
717
|
+
"genre_ids": [
|
|
718
|
+
99,
|
|
719
|
+
],
|
|
720
|
+
"id": 830418,
|
|
721
|
+
"media_type": "Movie",
|
|
722
|
+
"original_language": "en",
|
|
723
|
+
"original_title": "Creating the World of Harry Potter, Part 1: The Magic Begins",
|
|
724
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
725
|
+
"popularity": 40.847,
|
|
726
|
+
"poster_path": "/3MG0azaFj7sukbM3EzRRvgw7ZnH.jpg",
|
|
727
|
+
"release_date": "2009-11-17",
|
|
728
|
+
"title": "Creating the World of Harry Potter, Part 1: The Magic Begins",
|
|
729
|
+
"video": false,
|
|
730
|
+
"vote_average": 4.5,
|
|
731
|
+
"vote_count": 3,
|
|
732
|
+
},
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"cursor": "ODMwNDEyOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
736
|
+
"node": {
|
|
737
|
+
"adult": false,
|
|
738
|
+
"backdrop_path": null,
|
|
739
|
+
"genre_ids": [
|
|
740
|
+
99,
|
|
741
|
+
],
|
|
742
|
+
"id": 830412,
|
|
743
|
+
"media_type": "Movie",
|
|
744
|
+
"original_language": "en",
|
|
745
|
+
"original_title": "Creating the World of Harry Potter, Part 5: Evolution",
|
|
746
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
747
|
+
"popularity": 15.683,
|
|
748
|
+
"poster_path": "/gZHqS7uwcK1oeyHvCyNnO5olbLt.jpg",
|
|
749
|
+
"release_date": "2011-06-14",
|
|
750
|
+
"title": "Creating the World of Harry Potter, Part 5: Evolution",
|
|
751
|
+
"video": false,
|
|
752
|
+
"vote_average": 6,
|
|
753
|
+
"vote_count": 1,
|
|
754
|
+
},
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"cursor": "ODMwNDE0Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
758
|
+
"node": {
|
|
759
|
+
"adult": false,
|
|
760
|
+
"backdrop_path": null,
|
|
761
|
+
"genre_ids": [
|
|
762
|
+
99,
|
|
763
|
+
],
|
|
764
|
+
"id": 830414,
|
|
765
|
+
"media_type": "Movie",
|
|
766
|
+
"original_language": "en",
|
|
767
|
+
"original_title": "Creating the World of Harry Potter, Part 8: Growing Up",
|
|
768
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
769
|
+
"popularity": 17.468,
|
|
770
|
+
"poster_path": "/zubd8i4CXibkl1XNbCUfGuvqEMC.jpg",
|
|
771
|
+
"release_date": "2011-06-14",
|
|
772
|
+
"title": "Creating the World of Harry Potter, Part 8: Growing Up",
|
|
773
|
+
"video": false,
|
|
774
|
+
"vote_average": 8,
|
|
775
|
+
"vote_count": 2,
|
|
776
|
+
},
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"cursor": "NzQ3MTA1Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
780
|
+
"node": {
|
|
781
|
+
"adult": false,
|
|
782
|
+
"backdrop_path": "/cAEl4xVInHfc7UG05qwlzSxhmNd.jpg",
|
|
783
|
+
"genre_ids": [
|
|
784
|
+
35,
|
|
785
|
+
],
|
|
786
|
+
"id": 747105,
|
|
787
|
+
"media_type": "Movie",
|
|
788
|
+
"original_language": "fr",
|
|
789
|
+
"original_title": "Harry Potter, c’est le mal",
|
|
790
|
+
"overview": "Have you seen Jesus?",
|
|
791
|
+
"popularity": 5.745,
|
|
792
|
+
"poster_path": "/1qieHspAGWrAOO3ycQjSoY2oeB6.jpg",
|
|
793
|
+
"release_date": "2016-01-01",
|
|
794
|
+
"title": "Harry Potter, c’est le mal",
|
|
795
|
+
"video": false,
|
|
796
|
+
"vote_average": 7,
|
|
797
|
+
"vote_count": 1,
|
|
798
|
+
},
|
|
799
|
+
},
|
|
800
|
+
],
|
|
801
|
+
"errors": [],
|
|
802
|
+
"nodes": [
|
|
803
|
+
{
|
|
804
|
+
"adult": false,
|
|
805
|
+
"backdrop_path": "/pajKyahlPPggk0k5LiA2v4kwWqn.jpg",
|
|
806
|
+
"genre_ids": [
|
|
807
|
+
12,
|
|
808
|
+
14,
|
|
809
|
+
],
|
|
810
|
+
"id": 671,
|
|
811
|
+
"media_type": "Movie",
|
|
812
|
+
"original_language": "en",
|
|
813
|
+
"original_title": "Harry Potter and the Philosopher's Stone",
|
|
814
|
+
"overview": "Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard—with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths—and about the villain who's to blame.",
|
|
815
|
+
"popularity": 284.991,
|
|
816
|
+
"poster_path": "/wuMc08IPKEatf9rnMNXvIDxqP4W.jpg",
|
|
817
|
+
"release_date": "2001-11-16",
|
|
818
|
+
"title": "Harry Potter and the Philosopher's Stone",
|
|
819
|
+
"video": false,
|
|
820
|
+
"vote_average": 7.9,
|
|
821
|
+
"vote_count": 21237,
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"adult": false,
|
|
825
|
+
"backdrop_path": "/1stUIsjawROZxjiCMtqqXqgfZWC.jpg",
|
|
826
|
+
"genre_ids": [
|
|
827
|
+
12,
|
|
828
|
+
14,
|
|
829
|
+
],
|
|
830
|
+
"id": 672,
|
|
831
|
+
"media_type": "Movie",
|
|
832
|
+
"original_language": "en",
|
|
833
|
+
"original_title": "Harry Potter and the Chamber of Secrets",
|
|
834
|
+
"overview": "Cars fly, trees fight back, and a mysterious house-elf comes to warn Harry Potter at the start of his second year at Hogwarts. Adventure and danger await when bloody writing on a wall announces: The Chamber Of Secrets Has Been Opened. To save Hogwarts will require all of Harry, Ron and Hermione’s magical abilities and courage.",
|
|
835
|
+
"popularity": 267.281,
|
|
836
|
+
"poster_path": "/sdEOH0992YZ0QSxgXNIGLq1ToUi.jpg",
|
|
837
|
+
"release_date": "2002-11-13",
|
|
838
|
+
"title": "Harry Potter and the Chamber of Secrets",
|
|
839
|
+
"video": false,
|
|
840
|
+
"vote_average": 7.7,
|
|
841
|
+
"vote_count": 17152,
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"adult": false,
|
|
845
|
+
"backdrop_path": "/kT8bDEAgEYBKhRJtqM97qTw6uRW.jpg",
|
|
846
|
+
"genre_ids": [
|
|
847
|
+
12,
|
|
848
|
+
14,
|
|
849
|
+
],
|
|
850
|
+
"id": 767,
|
|
851
|
+
"media_type": "Movie",
|
|
852
|
+
"original_language": "en",
|
|
853
|
+
"original_title": "Harry Potter and the Half-Blood Prince",
|
|
854
|
+
"overview": "As Lord Voldemort tightens his grip on both the Muggle and wizarding worlds, Hogwarts is no longer a safe haven. Harry suspects perils may even lie within the castle, but Dumbledore is more intent upon preparing him for the final battle fast approaching. Together they work to find the key to unlock Voldemorts defenses and to this end, Dumbledore recruits his old friend and colleague Horace Slughorn, whom he believes holds crucial information. Even as the decisive showdown looms, romance blossoms for Harry, Ron, Hermione and their classmates. Love is in the air, but danger lies ahead and Hogwarts may never be the same again.",
|
|
855
|
+
"popularity": 211.926,
|
|
856
|
+
"poster_path": "/z7uo9zmQdQwU5ZJHFpv2Upl30i1.jpg",
|
|
857
|
+
"release_date": "2009-07-07",
|
|
858
|
+
"title": "Harry Potter and the Half-Blood Prince",
|
|
859
|
+
"video": false,
|
|
860
|
+
"vote_average": 7.7,
|
|
861
|
+
"vote_count": 15200,
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"adult": false,
|
|
865
|
+
"backdrop_path": "/obKmfNexgL4ZP5cAmzdL4KbHHYX.jpg",
|
|
866
|
+
"genre_ids": [
|
|
867
|
+
12,
|
|
868
|
+
14,
|
|
869
|
+
],
|
|
870
|
+
"id": 673,
|
|
871
|
+
"media_type": "Movie",
|
|
872
|
+
"original_language": "en",
|
|
873
|
+
"original_title": "Harry Potter and the Prisoner of Azkaban",
|
|
874
|
+
"overview": "Year three at Hogwarts means new fun and challenges as Harry learns the delicate art of approaching a Hippogriff, transforming shape-shifting Boggarts into hilarity and even turning back time. But the term also brings danger: soul-sucking Dementors hover over the school, an ally of the accursed He-Who-Cannot-Be-Named lurks within the castle walls, and fearsome wizard Sirius Black escapes Azkaban. And Harry will confront them all.",
|
|
875
|
+
"popularity": 244.676,
|
|
876
|
+
"poster_path": "/aWxwnYoe8p2d2fcxOqtvAtJ72Rw.jpg",
|
|
877
|
+
"release_date": "2004-05-31",
|
|
878
|
+
"title": "Harry Potter and the Prisoner of Azkaban",
|
|
879
|
+
"video": false,
|
|
880
|
+
"vote_average": 8,
|
|
881
|
+
"vote_count": 16864,
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"adult": false,
|
|
885
|
+
"backdrop_path": "/8f9dnOtpArDrOMEylpSN9Sc6fuz.jpg",
|
|
886
|
+
"genre_ids": [
|
|
887
|
+
12,
|
|
888
|
+
14,
|
|
889
|
+
10751,
|
|
890
|
+
],
|
|
891
|
+
"id": 674,
|
|
892
|
+
"media_type": "Movie",
|
|
893
|
+
"original_language": "en",
|
|
894
|
+
"original_title": "Harry Potter and the Goblet of Fire",
|
|
895
|
+
"overview": "When Harry Potter's name emerges from the Goblet of Fire, he becomes a competitor in a grueling battle for glory among three wizarding schools—the Triwizard Tournament. But since Harry never submitted his name for the Tournament, who did? Now Harry must confront a deadly dragon, fierce water demons and an enchanted maze only to find himself in the cruel grasp of He Who Must Not Be Named.",
|
|
896
|
+
"popularity": 208.542,
|
|
897
|
+
"poster_path": "/fECBtHlr0RB3foNHDiCBXeg9Bv9.jpg",
|
|
898
|
+
"release_date": "2005-11-16",
|
|
899
|
+
"title": "Harry Potter and the Goblet of Fire",
|
|
900
|
+
"video": false,
|
|
901
|
+
"vote_average": 7.8,
|
|
902
|
+
"vote_count": 16209,
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"adult": false,
|
|
906
|
+
"backdrop_path": "/n5A7brJCjejceZmHyujwUTVgQNC.jpg",
|
|
907
|
+
"genre_ids": [
|
|
908
|
+
14,
|
|
909
|
+
12,
|
|
910
|
+
],
|
|
911
|
+
"id": 12445,
|
|
912
|
+
"media_type": "Movie",
|
|
913
|
+
"original_language": "en",
|
|
914
|
+
"original_title": "Harry Potter and the Deathly Hallows: Part 2",
|
|
915
|
+
"overview": "Harry, Ron and Hermione continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards, Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.",
|
|
916
|
+
"popularity": 218.733,
|
|
917
|
+
"poster_path": "/da22ZBmrDOXOCDRvr8Gic8ldhv4.jpg",
|
|
918
|
+
"release_date": "2011-07-07",
|
|
919
|
+
"title": "Harry Potter and the Deathly Hallows: Part 2",
|
|
920
|
+
"video": false,
|
|
921
|
+
"vote_average": 8.1,
|
|
922
|
+
"vote_count": 16322,
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"adult": false,
|
|
926
|
+
"backdrop_path": "/AqLcLsGGTzAjm3pCCq0CZCQrp6m.jpg",
|
|
927
|
+
"genre_ids": [
|
|
928
|
+
12,
|
|
929
|
+
14,
|
|
930
|
+
],
|
|
931
|
+
"id": 12444,
|
|
932
|
+
"media_type": "Movie",
|
|
933
|
+
"original_language": "en",
|
|
934
|
+
"original_title": "Harry Potter and the Deathly Hallows: Part 1",
|
|
935
|
+
"overview": "Harry, Ron and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes, putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose, the world is more dangerous than ever.",
|
|
936
|
+
"popularity": 211.438,
|
|
937
|
+
"poster_path": "/f1geQ0I9UETRF1ed30voZfw8zT.jpg",
|
|
938
|
+
"release_date": "2010-10-17",
|
|
939
|
+
"title": "Harry Potter and the Deathly Hallows: Part 1",
|
|
940
|
+
"video": false,
|
|
941
|
+
"vote_average": 7.8,
|
|
942
|
+
"vote_count": 15146,
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"adult": false,
|
|
946
|
+
"backdrop_path": "/bsaA9qtIR6VTDQykXdBzJc8V5rS.jpg",
|
|
947
|
+
"genre_ids": [
|
|
948
|
+
12,
|
|
949
|
+
14,
|
|
950
|
+
9648,
|
|
951
|
+
],
|
|
952
|
+
"id": 675,
|
|
953
|
+
"media_type": "Movie",
|
|
954
|
+
"original_language": "en",
|
|
955
|
+
"original_title": "Harry Potter and the Order of the Phoenix",
|
|
956
|
+
"overview": "The rebellion begins! Lord Voldemort has returned, but the Ministry of Magic is doing everything it can to keep the wizarding world from knowing the truth – including appointing Ministry official Dolores Umbridge as the new Defence Against the Dark Arts professor at Hogwarts. When Umbridge refuses to teach practical defensive magic, Ron and Hermione convince Harry to secretly train a select group of students for the wizarding war that lies ahead. A terrifying showdown between good and evil awaits in this enthralling film version of the fifth novel in J.K. Rowling’s Harry Potter series. Prepare for battle!",
|
|
957
|
+
"popularity": 177.862,
|
|
958
|
+
"poster_path": "/s836PRwHkLjrOJrfW0eo7B4NJOf.jpg",
|
|
959
|
+
"release_date": "2007-06-28",
|
|
960
|
+
"title": "Harry Potter and the Order of the Phoenix",
|
|
961
|
+
"video": false,
|
|
962
|
+
"vote_average": 7.7,
|
|
963
|
+
"vote_count": 15441,
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"adult": false,
|
|
967
|
+
"backdrop_path": "/4LOxoeZWt5wr9mooxEZRFK96lDd.jpg",
|
|
968
|
+
"genre_ids": [
|
|
969
|
+
99,
|
|
970
|
+
],
|
|
971
|
+
"id": 483898,
|
|
972
|
+
"media_type": "Movie",
|
|
973
|
+
"original_language": "en",
|
|
974
|
+
"original_title": "50 Greatest Harry Potter Moments",
|
|
975
|
+
"overview": "To mark the release two weeks ago of the eighth and final movie in the series, Robbie Coltrane narrates a countdown of the movie franchise's best moments. From Harry's first meeting with Ron and Hermione aboard the Hogwarts Express through to magical mysteries.",
|
|
976
|
+
"popularity": 87.372,
|
|
977
|
+
"poster_path": "/g1xiBoLD6v3ZaXPa4QtuXiQeYKW.jpg",
|
|
978
|
+
"release_date": "2011-07-27",
|
|
979
|
+
"title": "50 Greatest Harry Potter Moments",
|
|
980
|
+
"video": false,
|
|
981
|
+
"vote_average": 7.9,
|
|
982
|
+
"vote_count": 37,
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"adult": false,
|
|
986
|
+
"backdrop_path": null,
|
|
987
|
+
"genre_ids": [
|
|
988
|
+
99,
|
|
989
|
+
],
|
|
990
|
+
"id": 833629,
|
|
991
|
+
"media_type": "Movie",
|
|
992
|
+
"original_language": "en",
|
|
993
|
+
"original_title": "Creating the World of Harry Potter, Part 2: Characters",
|
|
994
|
+
"overview": "Dive deeper into the World of Harry Potter by focusing on the characters in the film and going behind the scenes with filmmakers.",
|
|
995
|
+
"popularity": 47.008,
|
|
996
|
+
"poster_path": "/cKkb3UlCQl86SYEYi6aGtfGnFbf.jpg",
|
|
997
|
+
"release_date": "2009-12-08",
|
|
998
|
+
"title": "Creating the World of Harry Potter, Part 2: Characters",
|
|
999
|
+
"video": false,
|
|
1000
|
+
"vote_average": 4,
|
|
1001
|
+
"vote_count": 2,
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"adult": false,
|
|
1005
|
+
"backdrop_path": "/mjCYpJXCBYDZgMr1U1KZcFgFDfC.jpg",
|
|
1006
|
+
"genre_ids": [
|
|
1007
|
+
99,
|
|
1008
|
+
],
|
|
1009
|
+
"id": 482408,
|
|
1010
|
+
"media_type": "Movie",
|
|
1011
|
+
"original_language": "en",
|
|
1012
|
+
"original_title": "Harry Potter: A History Of Magic",
|
|
1013
|
+
"overview": "A thrilling journey through legends, belief and folklore, this film goes behind the scenes with the British Library as they search to tell that story through objects in their collection, in an ambitious new exhibition: Harry Potter: A History Of Magic. J.K. Rowling, who is lending unseen manuscripts, drawings and drafts from her private archives (which will sit alongside treasures from the British Library, as well as original drafts and drawings from Jim Kay) talks about some of the personal items she has lent to the exhibition and gives new insight into her writing, looking at some of the objects from the exhibition that have fired her imagination.",
|
|
1014
|
+
"popularity": 21.451,
|
|
1015
|
+
"poster_path": "/geike7VgTrftxwzcvND4dRdZdAv.jpg",
|
|
1016
|
+
"release_date": "2017-10-28",
|
|
1017
|
+
"title": "Harry Potter: A History Of Magic",
|
|
1018
|
+
"video": false,
|
|
1019
|
+
"vote_average": 6.9,
|
|
1020
|
+
"vote_count": 33,
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"adult": false,
|
|
1024
|
+
"backdrop_path": null,
|
|
1025
|
+
"genre_ids": [
|
|
1026
|
+
14,
|
|
1027
|
+
],
|
|
1028
|
+
"id": 881554,
|
|
1029
|
+
"media_type": "Movie",
|
|
1030
|
+
"original_language": "en",
|
|
1031
|
+
"original_title": "Harry Potter: Different Perspective",
|
|
1032
|
+
"overview": "",
|
|
1033
|
+
"popularity": 16.809,
|
|
1034
|
+
"poster_path": "/APuWMuQGqHZMG236ZTsMhNpUXF.jpg",
|
|
1035
|
+
"release_date": "2021-08-10",
|
|
1036
|
+
"title": "Harry Potter: Different Perspective",
|
|
1037
|
+
"video": false,
|
|
1038
|
+
"vote_average": 0,
|
|
1039
|
+
"vote_count": 0,
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"adult": false,
|
|
1043
|
+
"backdrop_path": null,
|
|
1044
|
+
"genre_ids": [
|
|
1045
|
+
99,
|
|
1046
|
+
],
|
|
1047
|
+
"id": 833635,
|
|
1048
|
+
"media_type": "Movie",
|
|
1049
|
+
"original_language": "en",
|
|
1050
|
+
"original_title": "Creating the World of Harry Potter, Part 3: Creatures",
|
|
1051
|
+
"overview": "Go behind the scenes in the World of Harry Potter and explore the magic behind the creatures throughout the films.",
|
|
1052
|
+
"popularity": 27.583,
|
|
1053
|
+
"poster_path": "/w4aWl5YsmYPTdVaopHaIf5eRKB6.jpg",
|
|
1054
|
+
"release_date": "2009-10-19",
|
|
1055
|
+
"title": "Creating the World of Harry Potter, Part 3: Creatures",
|
|
1056
|
+
"video": false,
|
|
1057
|
+
"vote_average": 6,
|
|
1058
|
+
"vote_count": 1,
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"adult": false,
|
|
1062
|
+
"backdrop_path": null,
|
|
1063
|
+
"genre_ids": [
|
|
1064
|
+
99,
|
|
1065
|
+
],
|
|
1066
|
+
"id": 833649,
|
|
1067
|
+
"media_type": "Movie",
|
|
1068
|
+
"original_language": "en",
|
|
1069
|
+
"original_title": "Creating the World of Harry Potter, Part 7: Story",
|
|
1070
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
1071
|
+
"popularity": 27.031,
|
|
1072
|
+
"poster_path": "/yTAvJglf38zM0WFAfb2QRNubTXi.jpg",
|
|
1073
|
+
"release_date": "2012-09-07",
|
|
1074
|
+
"title": "Creating the World of Harry Potter, Part 7: Story",
|
|
1075
|
+
"video": true,
|
|
1076
|
+
"vote_average": 0,
|
|
1077
|
+
"vote_count": 0,
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"adult": false,
|
|
1081
|
+
"backdrop_path": null,
|
|
1082
|
+
"genre_ids": [
|
|
1083
|
+
99,
|
|
1084
|
+
],
|
|
1085
|
+
"id": 830418,
|
|
1086
|
+
"media_type": "Movie",
|
|
1087
|
+
"original_language": "en",
|
|
1088
|
+
"original_title": "Creating the World of Harry Potter, Part 1: The Magic Begins",
|
|
1089
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
1090
|
+
"popularity": 40.847,
|
|
1091
|
+
"poster_path": "/3MG0azaFj7sukbM3EzRRvgw7ZnH.jpg",
|
|
1092
|
+
"release_date": "2009-11-17",
|
|
1093
|
+
"title": "Creating the World of Harry Potter, Part 1: The Magic Begins",
|
|
1094
|
+
"video": false,
|
|
1095
|
+
"vote_average": 4.5,
|
|
1096
|
+
"vote_count": 3,
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"adult": false,
|
|
1100
|
+
"backdrop_path": null,
|
|
1101
|
+
"genre_ids": [
|
|
1102
|
+
99,
|
|
1103
|
+
],
|
|
1104
|
+
"id": 830412,
|
|
1105
|
+
"media_type": "Movie",
|
|
1106
|
+
"original_language": "en",
|
|
1107
|
+
"original_title": "Creating the World of Harry Potter, Part 5: Evolution",
|
|
1108
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
1109
|
+
"popularity": 15.683,
|
|
1110
|
+
"poster_path": "/gZHqS7uwcK1oeyHvCyNnO5olbLt.jpg",
|
|
1111
|
+
"release_date": "2011-06-14",
|
|
1112
|
+
"title": "Creating the World of Harry Potter, Part 5: Evolution",
|
|
1113
|
+
"video": false,
|
|
1114
|
+
"vote_average": 6,
|
|
1115
|
+
"vote_count": 1,
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"adult": false,
|
|
1119
|
+
"backdrop_path": null,
|
|
1120
|
+
"genre_ids": [
|
|
1121
|
+
99,
|
|
1122
|
+
],
|
|
1123
|
+
"id": 830414,
|
|
1124
|
+
"media_type": "Movie",
|
|
1125
|
+
"original_language": "en",
|
|
1126
|
+
"original_title": "Creating the World of Harry Potter, Part 8: Growing Up",
|
|
1127
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
1128
|
+
"popularity": 17.468,
|
|
1129
|
+
"poster_path": "/zubd8i4CXibkl1XNbCUfGuvqEMC.jpg",
|
|
1130
|
+
"release_date": "2011-06-14",
|
|
1131
|
+
"title": "Creating the World of Harry Potter, Part 8: Growing Up",
|
|
1132
|
+
"video": false,
|
|
1133
|
+
"vote_average": 8,
|
|
1134
|
+
"vote_count": 2,
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"adult": false,
|
|
1138
|
+
"backdrop_path": "/cAEl4xVInHfc7UG05qwlzSxhmNd.jpg",
|
|
1139
|
+
"genre_ids": [
|
|
1140
|
+
35,
|
|
1141
|
+
],
|
|
1142
|
+
"id": 747105,
|
|
1143
|
+
"media_type": "Movie",
|
|
1144
|
+
"original_language": "fr",
|
|
1145
|
+
"original_title": "Harry Potter, c’est le mal",
|
|
1146
|
+
"overview": "Have you seen Jesus?",
|
|
1147
|
+
"popularity": 5.745,
|
|
1148
|
+
"poster_path": "/1qieHspAGWrAOO3ycQjSoY2oeB6.jpg",
|
|
1149
|
+
"release_date": "2016-01-01",
|
|
1150
|
+
"title": "Harry Potter, c’est le mal",
|
|
1151
|
+
"video": false,
|
|
1152
|
+
"vote_average": 7,
|
|
1153
|
+
"vote_count": 1,
|
|
1154
|
+
},
|
|
1155
|
+
],
|
|
1156
|
+
"pageInfo": {
|
|
1157
|
+
"endCursor": "NzQ3MTA1Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1158
|
+
"hasNextPage": true,
|
|
1159
|
+
"hasPreviousPage": false,
|
|
1160
|
+
"startCursor": "NjcxOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1161
|
+
},
|
|
1162
|
+
"totalCount": 32,
|
|
1163
|
+
}
|
|
1164
|
+
`;
|
|
1165
|
+
|
|
1166
|
+
exports[`resolveSearch > movies when the second 18 are requested should return the correct response 1`] = `
|
|
1167
|
+
{
|
|
1168
|
+
"edges": [
|
|
1169
|
+
{
|
|
1170
|
+
"cursor": "ODMwNDE1Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1171
|
+
"node": {
|
|
1172
|
+
"adult": false,
|
|
1173
|
+
"backdrop_path": null,
|
|
1174
|
+
"genre_ids": [
|
|
1175
|
+
99,
|
|
1176
|
+
],
|
|
1177
|
+
"id": 830415,
|
|
1178
|
+
"media_type": "Movie",
|
|
1179
|
+
"original_language": "en",
|
|
1180
|
+
"original_title": "Creating the World of Harry Potter, Part 6: Magical Effects",
|
|
1181
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
1182
|
+
"popularity": 13.332,
|
|
1183
|
+
"poster_path": "/jTuHZAIiAMjAtMmxIYyIFmG2AN0.jpg",
|
|
1184
|
+
"release_date": "2011-06-14",
|
|
1185
|
+
"title": "Creating the World of Harry Potter, Part 6: Magical Effects",
|
|
1186
|
+
"video": false,
|
|
1187
|
+
"vote_average": 7.3,
|
|
1188
|
+
"vote_count": 4,
|
|
1189
|
+
},
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"cursor": "ODgyMzEyOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1193
|
+
"node": {
|
|
1194
|
+
"adult": false,
|
|
1195
|
+
"backdrop_path": null,
|
|
1196
|
+
"genre_ids": [
|
|
1197
|
+
99,
|
|
1198
|
+
],
|
|
1199
|
+
"id": 882312,
|
|
1200
|
+
"media_type": "Movie",
|
|
1201
|
+
"original_language": "de",
|
|
1202
|
+
"original_title": "20 Jahre Harry Potter - Exklusive Einblicke",
|
|
1203
|
+
"overview": "",
|
|
1204
|
+
"popularity": 4.049,
|
|
1205
|
+
"poster_path": null,
|
|
1206
|
+
"release_date": "2021-10-07",
|
|
1207
|
+
"title": "20 Jahre Harry Potter - Exklusive Einblicke",
|
|
1208
|
+
"video": false,
|
|
1209
|
+
"vote_average": 9,
|
|
1210
|
+
"vote_count": 1,
|
|
1211
|
+
},
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"cursor": "MzE5MzkxOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1215
|
+
"node": {
|
|
1216
|
+
"adult": false,
|
|
1217
|
+
"backdrop_path": null,
|
|
1218
|
+
"genre_ids": [
|
|
1219
|
+
99,
|
|
1220
|
+
],
|
|
1221
|
+
"id": 319391,
|
|
1222
|
+
"media_type": "Movie",
|
|
1223
|
+
"original_language": "en",
|
|
1224
|
+
"original_title": "J.K. Rowling and the Birth of Harry Potter",
|
|
1225
|
+
"overview": "In this fascinating (unauthorized) biographical documentary, you'll get the inside scoop on the creative force behind one of the greatest publishing phenomena in the last 100 years -- J.K. Rowling, author of the Harry Potter series of books. Explore Rowling's meteoric rise from obscurity into the ranks of the world's richest women (via her books), and visit the people and places that played a significant role in her life.",
|
|
1226
|
+
"popularity": 5.18,
|
|
1227
|
+
"poster_path": "/hY6Ndq1O4JiEngZ7xIOtcLUCDTX.jpg",
|
|
1228
|
+
"release_date": "2004-12-07",
|
|
1229
|
+
"title": "J.K. Rowling and the Birth of Harry Potter",
|
|
1230
|
+
"video": true,
|
|
1231
|
+
"vote_average": 6.2,
|
|
1232
|
+
"vote_count": 5,
|
|
1233
|
+
},
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"cursor": "ODMzNjQyOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1237
|
+
"node": {
|
|
1238
|
+
"adult": false,
|
|
1239
|
+
"backdrop_path": null,
|
|
1240
|
+
"genre_ids": [
|
|
1241
|
+
99,
|
|
1242
|
+
],
|
|
1243
|
+
"id": 833642,
|
|
1244
|
+
"media_type": "Movie",
|
|
1245
|
+
"original_language": "en",
|
|
1246
|
+
"original_title": "Creating the World of Harry Potter, Part 4: Sound and Music",
|
|
1247
|
+
"overview": "Go behind the scenes in the World of Harry Potter and explore the magic behind the sound and music throughout the films.",
|
|
1248
|
+
"popularity": 9.099,
|
|
1249
|
+
"poster_path": "/9ggBb565oW8pNRY7jsI4j4p0Ui7.jpg",
|
|
1250
|
+
"release_date": "2009-10-19",
|
|
1251
|
+
"title": "Creating the World of Harry Potter, Part 4: Sound and Music",
|
|
1252
|
+
"video": false,
|
|
1253
|
+
"vote_average": 6,
|
|
1254
|
+
"vote_count": 1,
|
|
1255
|
+
},
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"cursor": "NDMwNDgxOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1259
|
+
"node": {
|
|
1260
|
+
"adult": false,
|
|
1261
|
+
"backdrop_path": null,
|
|
1262
|
+
"genre_ids": [
|
|
1263
|
+
99,
|
|
1264
|
+
],
|
|
1265
|
+
"id": 430481,
|
|
1266
|
+
"media_type": "Movie",
|
|
1267
|
+
"original_language": "en",
|
|
1268
|
+
"original_title": "Harry Potter: Witchcraft Repackaged",
|
|
1269
|
+
"overview": "Does Witchcraft/Wicca actually have power? If so, what is it's source? Does the Harry Potter series ' presentation of child-friendly Witchcraft make it's philosophy any more acceptable just because it is packaged as "children's fantasy literature"?",
|
|
1270
|
+
"popularity": 2.841,
|
|
1271
|
+
"poster_path": null,
|
|
1272
|
+
"release_date": "2001-01-01",
|
|
1273
|
+
"title": "Harry Potter: Witchcraft Repackaged",
|
|
1274
|
+
"video": false,
|
|
1275
|
+
"vote_average": 5.8,
|
|
1276
|
+
"vote_count": 6,
|
|
1277
|
+
},
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"cursor": "MTE2OTcyOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1281
|
+
"node": {
|
|
1282
|
+
"adult": false,
|
|
1283
|
+
"backdrop_path": null,
|
|
1284
|
+
"genre_ids": [
|
|
1285
|
+
99,
|
|
1286
|
+
10751,
|
|
1287
|
+
],
|
|
1288
|
+
"id": 116972,
|
|
1289
|
+
"media_type": "Movie",
|
|
1290
|
+
"original_language": "en",
|
|
1291
|
+
"original_title": "Discovering the Real World of Harry Potter",
|
|
1292
|
+
"overview": "Explore the myths and legends that inhabit the real world of Harry Potter. Follow award-winning documentary filmmakers as they offer insights to witches, wizards, Greek gods, ancient Celts, ghosts, magical creatures, alchemy, and ancient spells. Narrated by British actor Hugh Laurie, this fascinating documentary brings new dimensions to the historical and scientific world behind the Harry Potter series.",
|
|
1293
|
+
"popularity": 5.06,
|
|
1294
|
+
"poster_path": "/yLpnOqKw3ZycFu8t5Gil1BqTbnB.jpg",
|
|
1295
|
+
"release_date": "2001-12-10",
|
|
1296
|
+
"title": "Discovering the Real World of Harry Potter",
|
|
1297
|
+
"video": false,
|
|
1298
|
+
"vote_average": 6.6,
|
|
1299
|
+
"vote_count": 9,
|
|
1300
|
+
},
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"cursor": "MTA5MDA0Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1304
|
+
"node": {
|
|
1305
|
+
"adult": false,
|
|
1306
|
+
"backdrop_path": null,
|
|
1307
|
+
"genre_ids": [
|
|
1308
|
+
99,
|
|
1309
|
+
],
|
|
1310
|
+
"id": 109004,
|
|
1311
|
+
"media_type": "Movie",
|
|
1312
|
+
"original_language": "en",
|
|
1313
|
+
"original_title": "The Seeker's Guide to Harry Potter",
|
|
1314
|
+
"overview": "In this documentary, Dr. Geo Trevarthen uses psychology, theology and other disciplines to explore the mystical world of J.K. Rowling's Harry Potter novels, giving fans a deeper appreciation for the symbolism and magic in the books. Looking at the entire series, Trevarthen pays special attention to how readers' lives may intersect with shamanism and other real-world mystical traditions that echo through the halls of Hogwarts.",
|
|
1315
|
+
"popularity": 3.104,
|
|
1316
|
+
"poster_path": null,
|
|
1317
|
+
"release_date": "2010-11-23",
|
|
1318
|
+
"title": "The Seeker's Guide to Harry Potter",
|
|
1319
|
+
"video": false,
|
|
1320
|
+
"vote_average": 6.4,
|
|
1321
|
+
"vote_count": 4,
|
|
1322
|
+
},
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"cursor": "MzQxNDE1Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1326
|
+
"node": {
|
|
1327
|
+
"adult": false,
|
|
1328
|
+
"backdrop_path": null,
|
|
1329
|
+
"genre_ids": [],
|
|
1330
|
+
"id": 341415,
|
|
1331
|
+
"media_type": "Movie",
|
|
1332
|
+
"original_language": "en",
|
|
1333
|
+
"original_title": "'Harry Potter': Behind the Magic",
|
|
1334
|
+
"overview": "DVD that came with special box set. Covers the making of Harry Potter and the Goblet of Fire (2005).",
|
|
1335
|
+
"popularity": 1.578,
|
|
1336
|
+
"poster_path": null,
|
|
1337
|
+
"release_date": "2005-11-19",
|
|
1338
|
+
"title": "'Harry Potter': Behind the Magic",
|
|
1339
|
+
"video": false,
|
|
1340
|
+
"vote_average": 7,
|
|
1341
|
+
"vote_count": 4,
|
|
1342
|
+
},
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"cursor": "NTQ5NTY2Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1346
|
+
"node": {
|
|
1347
|
+
"adult": false,
|
|
1348
|
+
"backdrop_path": null,
|
|
1349
|
+
"genre_ids": [],
|
|
1350
|
+
"id": 549566,
|
|
1351
|
+
"media_type": "Movie",
|
|
1352
|
+
"original_language": "en",
|
|
1353
|
+
"original_title": "The Harry Potter Saga Analyzed",
|
|
1354
|
+
"overview": "A complete deconstruction of the cultural impact and themes of the Harry Potter series in its 20 years of existence.",
|
|
1355
|
+
"popularity": 1.035,
|
|
1356
|
+
"poster_path": null,
|
|
1357
|
+
"release_date": "",
|
|
1358
|
+
"title": "The Harry Potter Saga Analyzed",
|
|
1359
|
+
"video": false,
|
|
1360
|
+
"vote_average": 8.2,
|
|
1361
|
+
"vote_count": 3,
|
|
1362
|
+
},
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"cursor": "NTAwMDA4Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1366
|
+
"node": {
|
|
1367
|
+
"adult": false,
|
|
1368
|
+
"backdrop_path": "/9Lz64Rh09zEhJmpgAh37bMiuDyW.jpg",
|
|
1369
|
+
"genre_ids": [
|
|
1370
|
+
99,
|
|
1371
|
+
10770,
|
|
1372
|
+
],
|
|
1373
|
+
"id": 500008,
|
|
1374
|
+
"media_type": "Movie",
|
|
1375
|
+
"original_language": "en",
|
|
1376
|
+
"original_title": "Harry Potter: The Making of Diagon Alley",
|
|
1377
|
+
"overview": "An inside look into the creation of Universal Studio's Diagon Alley attraction.",
|
|
1378
|
+
"popularity": 1.4,
|
|
1379
|
+
"poster_path": null,
|
|
1380
|
+
"release_date": "2014-06-30",
|
|
1381
|
+
"title": "Harry Potter: The Making of Diagon Alley",
|
|
1382
|
+
"video": false,
|
|
1383
|
+
"vote_average": 4.3,
|
|
1384
|
+
"vote_count": 3,
|
|
1385
|
+
},
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"cursor": "NDQxNjY4Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1389
|
+
"node": {
|
|
1390
|
+
"adult": false,
|
|
1391
|
+
"backdrop_path": null,
|
|
1392
|
+
"genre_ids": [
|
|
1393
|
+
99,
|
|
1394
|
+
],
|
|
1395
|
+
"id": 441668,
|
|
1396
|
+
"media_type": "Movie",
|
|
1397
|
+
"original_language": "fr",
|
|
1398
|
+
"original_title": "À la découverte du vrai monde de Harry Potter",
|
|
1399
|
+
"overview": "French documentary seeking Harry Potter connections in the real world.",
|
|
1400
|
+
"popularity": 1.4,
|
|
1401
|
+
"poster_path": null,
|
|
1402
|
+
"release_date": "2004-12-01",
|
|
1403
|
+
"title": "À la découverte du vrai monde de Harry Potter",
|
|
1404
|
+
"video": false,
|
|
1405
|
+
"vote_average": 8.5,
|
|
1406
|
+
"vote_count": 2,
|
|
1407
|
+
},
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"cursor": "MjU2MDUwOjp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1411
|
+
"node": {
|
|
1412
|
+
"adult": false,
|
|
1413
|
+
"backdrop_path": null,
|
|
1414
|
+
"genre_ids": [
|
|
1415
|
+
99,
|
|
1416
|
+
],
|
|
1417
|
+
"id": 256050,
|
|
1418
|
+
"media_type": "Movie",
|
|
1419
|
+
"original_language": "en",
|
|
1420
|
+
"original_title": "The Magical World of Harry Potter: The Unauthorized Story of J.K. Rowling",
|
|
1421
|
+
"overview": "The unauthorized story of J.K. Rowling--creator of Harry Potter.",
|
|
1422
|
+
"popularity": 1.334,
|
|
1423
|
+
"poster_path": null,
|
|
1424
|
+
"release_date": "2000-08-08",
|
|
1425
|
+
"title": "The Magical World of Harry Potter: The Unauthorized Story of J.K. Rowling",
|
|
1426
|
+
"video": false,
|
|
1427
|
+
"vote_average": 6.5,
|
|
1428
|
+
"vote_count": 2,
|
|
1429
|
+
},
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"cursor": "NTQ1MDc6OnsicXVlcnkiOiJoYXJyeSBwb3R0ZXIiLCJzZWFyY2hUeXBlIjoiTU9WSUUifTo6c2VhcmNo",
|
|
1433
|
+
"node": {
|
|
1434
|
+
"adult": false,
|
|
1435
|
+
"backdrop_path": "/hGJ4Aeis3I9twyaCw1ZDLdhskZi.jpg",
|
|
1436
|
+
"genre_ids": [
|
|
1437
|
+
10402,
|
|
1438
|
+
35,
|
|
1439
|
+
],
|
|
1440
|
+
"id": 54507,
|
|
1441
|
+
"media_type": "Movie",
|
|
1442
|
+
"original_language": "en",
|
|
1443
|
+
"original_title": "A Very Potter Musical",
|
|
1444
|
+
"overview": "In April 2009, a group of University of Michigan students (Team StarKid) performed what was renamed "A Very Potter Musical", a two act musical parody that featured major elements from all seven Harry Potter books and an original score.",
|
|
1445
|
+
"popularity": 12.969,
|
|
1446
|
+
"poster_path": "/qVDVx2nEeVsGxzWuS6f4p4xzkdM.jpg",
|
|
1447
|
+
"release_date": "2009-04-09",
|
|
1448
|
+
"title": "A Very Potter Musical",
|
|
1449
|
+
"video": true,
|
|
1450
|
+
"vote_average": 8.4,
|
|
1451
|
+
"vote_count": 43,
|
|
1452
|
+
},
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
"cursor": "MzY2MTk6OnsicXVlcnkiOiJoYXJyeSBwb3R0ZXIiLCJzZWFyY2hUeXBlIjoiTU9WSUUifTo6c2VhcmNo",
|
|
1456
|
+
"node": {
|
|
1457
|
+
"adult": false,
|
|
1458
|
+
"backdrop_path": null,
|
|
1459
|
+
"genre_ids": [
|
|
1460
|
+
99,
|
|
1461
|
+
],
|
|
1462
|
+
"id": 36619,
|
|
1463
|
+
"media_type": "Movie",
|
|
1464
|
+
"original_language": "en",
|
|
1465
|
+
"original_title": "J.K. Rowling: A Year in the Life",
|
|
1466
|
+
"overview": "A look into the life of J.K. Rowling in the year leading to her finishing her final harry potter book.",
|
|
1467
|
+
"popularity": 4.14,
|
|
1468
|
+
"poster_path": "/noeheyUWBemWXoAbVSXLI34Vcz2.jpg",
|
|
1469
|
+
"release_date": "2007-01-01",
|
|
1470
|
+
"title": "J.K. Rowling: A Year in the Life",
|
|
1471
|
+
"video": false,
|
|
1472
|
+
"vote_average": 7.6,
|
|
1473
|
+
"vote_count": 16,
|
|
1474
|
+
},
|
|
1475
|
+
},
|
|
1476
|
+
],
|
|
1477
|
+
"errors": [],
|
|
1478
|
+
"nodes": [
|
|
1479
|
+
{
|
|
1480
|
+
"adult": false,
|
|
1481
|
+
"backdrop_path": null,
|
|
1482
|
+
"genre_ids": [
|
|
1483
|
+
99,
|
|
1484
|
+
],
|
|
1485
|
+
"id": 830415,
|
|
1486
|
+
"media_type": "Movie",
|
|
1487
|
+
"original_language": "en",
|
|
1488
|
+
"original_title": "Creating the World of Harry Potter, Part 6: Magical Effects",
|
|
1489
|
+
"overview": "One from a series of documentaries on the making of the Harry Potter cinematic universe.",
|
|
1490
|
+
"popularity": 13.332,
|
|
1491
|
+
"poster_path": "/jTuHZAIiAMjAtMmxIYyIFmG2AN0.jpg",
|
|
1492
|
+
"release_date": "2011-06-14",
|
|
1493
|
+
"title": "Creating the World of Harry Potter, Part 6: Magical Effects",
|
|
1494
|
+
"video": false,
|
|
1495
|
+
"vote_average": 7.3,
|
|
1496
|
+
"vote_count": 4,
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"adult": false,
|
|
1500
|
+
"backdrop_path": null,
|
|
1501
|
+
"genre_ids": [
|
|
1502
|
+
99,
|
|
1503
|
+
],
|
|
1504
|
+
"id": 882312,
|
|
1505
|
+
"media_type": "Movie",
|
|
1506
|
+
"original_language": "de",
|
|
1507
|
+
"original_title": "20 Jahre Harry Potter - Exklusive Einblicke",
|
|
1508
|
+
"overview": "",
|
|
1509
|
+
"popularity": 4.049,
|
|
1510
|
+
"poster_path": null,
|
|
1511
|
+
"release_date": "2021-10-07",
|
|
1512
|
+
"title": "20 Jahre Harry Potter - Exklusive Einblicke",
|
|
1513
|
+
"video": false,
|
|
1514
|
+
"vote_average": 9,
|
|
1515
|
+
"vote_count": 1,
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
"adult": false,
|
|
1519
|
+
"backdrop_path": null,
|
|
1520
|
+
"genre_ids": [
|
|
1521
|
+
99,
|
|
1522
|
+
],
|
|
1523
|
+
"id": 319391,
|
|
1524
|
+
"media_type": "Movie",
|
|
1525
|
+
"original_language": "en",
|
|
1526
|
+
"original_title": "J.K. Rowling and the Birth of Harry Potter",
|
|
1527
|
+
"overview": "In this fascinating (unauthorized) biographical documentary, you'll get the inside scoop on the creative force behind one of the greatest publishing phenomena in the last 100 years -- J.K. Rowling, author of the Harry Potter series of books. Explore Rowling's meteoric rise from obscurity into the ranks of the world's richest women (via her books), and visit the people and places that played a significant role in her life.",
|
|
1528
|
+
"popularity": 5.18,
|
|
1529
|
+
"poster_path": "/hY6Ndq1O4JiEngZ7xIOtcLUCDTX.jpg",
|
|
1530
|
+
"release_date": "2004-12-07",
|
|
1531
|
+
"title": "J.K. Rowling and the Birth of Harry Potter",
|
|
1532
|
+
"video": true,
|
|
1533
|
+
"vote_average": 6.2,
|
|
1534
|
+
"vote_count": 5,
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"adult": false,
|
|
1538
|
+
"backdrop_path": null,
|
|
1539
|
+
"genre_ids": [
|
|
1540
|
+
99,
|
|
1541
|
+
],
|
|
1542
|
+
"id": 833642,
|
|
1543
|
+
"media_type": "Movie",
|
|
1544
|
+
"original_language": "en",
|
|
1545
|
+
"original_title": "Creating the World of Harry Potter, Part 4: Sound and Music",
|
|
1546
|
+
"overview": "Go behind the scenes in the World of Harry Potter and explore the magic behind the sound and music throughout the films.",
|
|
1547
|
+
"popularity": 9.099,
|
|
1548
|
+
"poster_path": "/9ggBb565oW8pNRY7jsI4j4p0Ui7.jpg",
|
|
1549
|
+
"release_date": "2009-10-19",
|
|
1550
|
+
"title": "Creating the World of Harry Potter, Part 4: Sound and Music",
|
|
1551
|
+
"video": false,
|
|
1552
|
+
"vote_average": 6,
|
|
1553
|
+
"vote_count": 1,
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
"adult": false,
|
|
1557
|
+
"backdrop_path": null,
|
|
1558
|
+
"genre_ids": [
|
|
1559
|
+
99,
|
|
1560
|
+
],
|
|
1561
|
+
"id": 430481,
|
|
1562
|
+
"media_type": "Movie",
|
|
1563
|
+
"original_language": "en",
|
|
1564
|
+
"original_title": "Harry Potter: Witchcraft Repackaged",
|
|
1565
|
+
"overview": "Does Witchcraft/Wicca actually have power? If so, what is it's source? Does the Harry Potter series ' presentation of child-friendly Witchcraft make it's philosophy any more acceptable just because it is packaged as "children's fantasy literature"?",
|
|
1566
|
+
"popularity": 2.841,
|
|
1567
|
+
"poster_path": null,
|
|
1568
|
+
"release_date": "2001-01-01",
|
|
1569
|
+
"title": "Harry Potter: Witchcraft Repackaged",
|
|
1570
|
+
"video": false,
|
|
1571
|
+
"vote_average": 5.8,
|
|
1572
|
+
"vote_count": 6,
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"adult": false,
|
|
1576
|
+
"backdrop_path": null,
|
|
1577
|
+
"genre_ids": [
|
|
1578
|
+
99,
|
|
1579
|
+
10751,
|
|
1580
|
+
],
|
|
1581
|
+
"id": 116972,
|
|
1582
|
+
"media_type": "Movie",
|
|
1583
|
+
"original_language": "en",
|
|
1584
|
+
"original_title": "Discovering the Real World of Harry Potter",
|
|
1585
|
+
"overview": "Explore the myths and legends that inhabit the real world of Harry Potter. Follow award-winning documentary filmmakers as they offer insights to witches, wizards, Greek gods, ancient Celts, ghosts, magical creatures, alchemy, and ancient spells. Narrated by British actor Hugh Laurie, this fascinating documentary brings new dimensions to the historical and scientific world behind the Harry Potter series.",
|
|
1586
|
+
"popularity": 5.06,
|
|
1587
|
+
"poster_path": "/yLpnOqKw3ZycFu8t5Gil1BqTbnB.jpg",
|
|
1588
|
+
"release_date": "2001-12-10",
|
|
1589
|
+
"title": "Discovering the Real World of Harry Potter",
|
|
1590
|
+
"video": false,
|
|
1591
|
+
"vote_average": 6.6,
|
|
1592
|
+
"vote_count": 9,
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"adult": false,
|
|
1596
|
+
"backdrop_path": null,
|
|
1597
|
+
"genre_ids": [
|
|
1598
|
+
99,
|
|
1599
|
+
],
|
|
1600
|
+
"id": 109004,
|
|
1601
|
+
"media_type": "Movie",
|
|
1602
|
+
"original_language": "en",
|
|
1603
|
+
"original_title": "The Seeker's Guide to Harry Potter",
|
|
1604
|
+
"overview": "In this documentary, Dr. Geo Trevarthen uses psychology, theology and other disciplines to explore the mystical world of J.K. Rowling's Harry Potter novels, giving fans a deeper appreciation for the symbolism and magic in the books. Looking at the entire series, Trevarthen pays special attention to how readers' lives may intersect with shamanism and other real-world mystical traditions that echo through the halls of Hogwarts.",
|
|
1605
|
+
"popularity": 3.104,
|
|
1606
|
+
"poster_path": null,
|
|
1607
|
+
"release_date": "2010-11-23",
|
|
1608
|
+
"title": "The Seeker's Guide to Harry Potter",
|
|
1609
|
+
"video": false,
|
|
1610
|
+
"vote_average": 6.4,
|
|
1611
|
+
"vote_count": 4,
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
"adult": false,
|
|
1615
|
+
"backdrop_path": null,
|
|
1616
|
+
"genre_ids": [],
|
|
1617
|
+
"id": 341415,
|
|
1618
|
+
"media_type": "Movie",
|
|
1619
|
+
"original_language": "en",
|
|
1620
|
+
"original_title": "'Harry Potter': Behind the Magic",
|
|
1621
|
+
"overview": "DVD that came with special box set. Covers the making of Harry Potter and the Goblet of Fire (2005).",
|
|
1622
|
+
"popularity": 1.578,
|
|
1623
|
+
"poster_path": null,
|
|
1624
|
+
"release_date": "2005-11-19",
|
|
1625
|
+
"title": "'Harry Potter': Behind the Magic",
|
|
1626
|
+
"video": false,
|
|
1627
|
+
"vote_average": 7,
|
|
1628
|
+
"vote_count": 4,
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"adult": false,
|
|
1632
|
+
"backdrop_path": null,
|
|
1633
|
+
"genre_ids": [],
|
|
1634
|
+
"id": 549566,
|
|
1635
|
+
"media_type": "Movie",
|
|
1636
|
+
"original_language": "en",
|
|
1637
|
+
"original_title": "The Harry Potter Saga Analyzed",
|
|
1638
|
+
"overview": "A complete deconstruction of the cultural impact and themes of the Harry Potter series in its 20 years of existence.",
|
|
1639
|
+
"popularity": 1.035,
|
|
1640
|
+
"poster_path": null,
|
|
1641
|
+
"release_date": "",
|
|
1642
|
+
"title": "The Harry Potter Saga Analyzed",
|
|
1643
|
+
"video": false,
|
|
1644
|
+
"vote_average": 8.2,
|
|
1645
|
+
"vote_count": 3,
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"adult": false,
|
|
1649
|
+
"backdrop_path": "/9Lz64Rh09zEhJmpgAh37bMiuDyW.jpg",
|
|
1650
|
+
"genre_ids": [
|
|
1651
|
+
99,
|
|
1652
|
+
10770,
|
|
1653
|
+
],
|
|
1654
|
+
"id": 500008,
|
|
1655
|
+
"media_type": "Movie",
|
|
1656
|
+
"original_language": "en",
|
|
1657
|
+
"original_title": "Harry Potter: The Making of Diagon Alley",
|
|
1658
|
+
"overview": "An inside look into the creation of Universal Studio's Diagon Alley attraction.",
|
|
1659
|
+
"popularity": 1.4,
|
|
1660
|
+
"poster_path": null,
|
|
1661
|
+
"release_date": "2014-06-30",
|
|
1662
|
+
"title": "Harry Potter: The Making of Diagon Alley",
|
|
1663
|
+
"video": false,
|
|
1664
|
+
"vote_average": 4.3,
|
|
1665
|
+
"vote_count": 3,
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"adult": false,
|
|
1669
|
+
"backdrop_path": null,
|
|
1670
|
+
"genre_ids": [
|
|
1671
|
+
99,
|
|
1672
|
+
],
|
|
1673
|
+
"id": 441668,
|
|
1674
|
+
"media_type": "Movie",
|
|
1675
|
+
"original_language": "fr",
|
|
1676
|
+
"original_title": "À la découverte du vrai monde de Harry Potter",
|
|
1677
|
+
"overview": "French documentary seeking Harry Potter connections in the real world.",
|
|
1678
|
+
"popularity": 1.4,
|
|
1679
|
+
"poster_path": null,
|
|
1680
|
+
"release_date": "2004-12-01",
|
|
1681
|
+
"title": "À la découverte du vrai monde de Harry Potter",
|
|
1682
|
+
"video": false,
|
|
1683
|
+
"vote_average": 8.5,
|
|
1684
|
+
"vote_count": 2,
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
"adult": false,
|
|
1688
|
+
"backdrop_path": null,
|
|
1689
|
+
"genre_ids": [
|
|
1690
|
+
99,
|
|
1691
|
+
],
|
|
1692
|
+
"id": 256050,
|
|
1693
|
+
"media_type": "Movie",
|
|
1694
|
+
"original_language": "en",
|
|
1695
|
+
"original_title": "The Magical World of Harry Potter: The Unauthorized Story of J.K. Rowling",
|
|
1696
|
+
"overview": "The unauthorized story of J.K. Rowling--creator of Harry Potter.",
|
|
1697
|
+
"popularity": 1.334,
|
|
1698
|
+
"poster_path": null,
|
|
1699
|
+
"release_date": "2000-08-08",
|
|
1700
|
+
"title": "The Magical World of Harry Potter: The Unauthorized Story of J.K. Rowling",
|
|
1701
|
+
"video": false,
|
|
1702
|
+
"vote_average": 6.5,
|
|
1703
|
+
"vote_count": 2,
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
"adult": false,
|
|
1707
|
+
"backdrop_path": "/hGJ4Aeis3I9twyaCw1ZDLdhskZi.jpg",
|
|
1708
|
+
"genre_ids": [
|
|
1709
|
+
10402,
|
|
1710
|
+
35,
|
|
1711
|
+
],
|
|
1712
|
+
"id": 54507,
|
|
1713
|
+
"media_type": "Movie",
|
|
1714
|
+
"original_language": "en",
|
|
1715
|
+
"original_title": "A Very Potter Musical",
|
|
1716
|
+
"overview": "In April 2009, a group of University of Michigan students (Team StarKid) performed what was renamed "A Very Potter Musical", a two act musical parody that featured major elements from all seven Harry Potter books and an original score.",
|
|
1717
|
+
"popularity": 12.969,
|
|
1718
|
+
"poster_path": "/qVDVx2nEeVsGxzWuS6f4p4xzkdM.jpg",
|
|
1719
|
+
"release_date": "2009-04-09",
|
|
1720
|
+
"title": "A Very Potter Musical",
|
|
1721
|
+
"video": true,
|
|
1722
|
+
"vote_average": 8.4,
|
|
1723
|
+
"vote_count": 43,
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"adult": false,
|
|
1727
|
+
"backdrop_path": null,
|
|
1728
|
+
"genre_ids": [
|
|
1729
|
+
99,
|
|
1730
|
+
],
|
|
1731
|
+
"id": 36619,
|
|
1732
|
+
"media_type": "Movie",
|
|
1733
|
+
"original_language": "en",
|
|
1734
|
+
"original_title": "J.K. Rowling: A Year in the Life",
|
|
1735
|
+
"overview": "A look into the life of J.K. Rowling in the year leading to her finishing her final harry potter book.",
|
|
1736
|
+
"popularity": 4.14,
|
|
1737
|
+
"poster_path": "/noeheyUWBemWXoAbVSXLI34Vcz2.jpg",
|
|
1738
|
+
"release_date": "2007-01-01",
|
|
1739
|
+
"title": "J.K. Rowling: A Year in the Life",
|
|
1740
|
+
"video": false,
|
|
1741
|
+
"vote_average": 7.6,
|
|
1742
|
+
"vote_count": 16,
|
|
1743
|
+
},
|
|
1744
|
+
],
|
|
1745
|
+
"pageInfo": {
|
|
1746
|
+
"endCursor": "MzY2MTk6OnsicXVlcnkiOiJoYXJyeSBwb3R0ZXIiLCJzZWFyY2hUeXBlIjoiTU9WSUUifTo6c2VhcmNo",
|
|
1747
|
+
"hasNextPage": false,
|
|
1748
|
+
"hasPreviousPage": true,
|
|
1749
|
+
"startCursor": "ODMwNDE1Ojp7InF1ZXJ5IjoiaGFycnkgcG90dGVyIiwic2VhcmNoVHlwZSI6Ik1PVklFIn06OnNlYXJjaA==",
|
|
1750
|
+
},
|
|
1751
|
+
"totalCount": 32,
|
|
1752
|
+
}
|
|
1753
|
+
`;
|
|
1754
|
+
|
|
1755
|
+
exports[`resolveSearch > multi when the last 5 are requested should return the correct response 1`] = `
|
|
1756
|
+
{
|
|
1757
|
+
"edges": [
|
|
1758
|
+
{
|
|
1759
|
+
"cursor": "OTc3ODI6OnsicXVlcnkiOiJtYXJpbHluIG1vbnJvZSIsInNlYXJjaFR5cGUiOiJNVUxUSSJ9OjpzZWFyY2g=",
|
|
1760
|
+
"node": {
|
|
1761
|
+
"adult": false,
|
|
1762
|
+
"backdrop_path": "/a3fTIciWMsp856yOC25fKBFyyCF.jpg",
|
|
1763
|
+
"genre_ids": [
|
|
1764
|
+
18,
|
|
1765
|
+
],
|
|
1766
|
+
"id": 97782,
|
|
1767
|
+
"media_type": "Movie",
|
|
1768
|
+
"original_language": "en",
|
|
1769
|
+
"original_title": "Goodbye, Norma Jean",
|
|
1770
|
+
"overview": "Norma Jean Baker finds her way to Hollywood and is turned into sex symbol Marilyn Monroe.",
|
|
1771
|
+
"popularity": 1.032,
|
|
1772
|
+
"poster_path": "/unI9djSACymOwKEGElUGCcvvw6b.jpg",
|
|
1773
|
+
"release_date": "1976-02-01",
|
|
1774
|
+
"title": "Goodbye, Norma Jean",
|
|
1775
|
+
"video": false,
|
|
1776
|
+
"vote_average": 3.6,
|
|
1777
|
+
"vote_count": 4,
|
|
1778
|
+
},
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"cursor": "MTIxODMxOjp7InF1ZXJ5IjoibWFyaWx5biBtb25yb2UiLCJzZWFyY2hUeXBlIjoiTVVMVEkifTo6c2VhcmNo",
|
|
1782
|
+
"node": {
|
|
1783
|
+
"adult": false,
|
|
1784
|
+
"backdrop_path": "/nWdEBsHiQaMk62zsFwOJeMMS5XW.jpg",
|
|
1785
|
+
"genre_ids": [
|
|
1786
|
+
99,
|
|
1787
|
+
],
|
|
1788
|
+
"id": 121831,
|
|
1789
|
+
"media_type": "Movie",
|
|
1790
|
+
"original_language": "en",
|
|
1791
|
+
"original_title": "Love, Marilyn",
|
|
1792
|
+
"overview": "Using the book 'Fragments', which collects Marilyn Monroe's poems, notes and letters, and with participation from the Arthur Miller and Truman Capote estates who have contributed more material, each of the actresses will embody the legend at various stages in her life.",
|
|
1793
|
+
"popularity": 5.894,
|
|
1794
|
+
"poster_path": "/1YPp03izMP73O8AVqAk2acS0z1C.jpg",
|
|
1795
|
+
"release_date": "2013-05-30",
|
|
1796
|
+
"title": "Love, Marilyn",
|
|
1797
|
+
"video": false,
|
|
1798
|
+
"vote_average": 6.5,
|
|
1799
|
+
"vote_count": 47,
|
|
1800
|
+
},
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"cursor": "MjE3MTk3Ojp7InF1ZXJ5IjoibWFyaWx5biBtb25yb2UiLCJzZWFyY2hUeXBlIjoiTVVMVEkifTo6c2VhcmNo",
|
|
1804
|
+
"node": {
|
|
1805
|
+
"adult": false,
|
|
1806
|
+
"backdrop_path": "/tutL9boVor41sSGwC5B5V6kof9J.jpg",
|
|
1807
|
+
"genre_ids": [
|
|
1808
|
+
10770,
|
|
1809
|
+
18,
|
|
1810
|
+
],
|
|
1811
|
+
"id": 217197,
|
|
1812
|
+
"media_type": "Movie",
|
|
1813
|
+
"original_language": "en",
|
|
1814
|
+
"original_title": "Marilyn: The Untold Story",
|
|
1815
|
+
"overview": "The story of the life and times of the legendary Hollywood blonde bombshell Marilyn Monroe, from her meteoric rise to stardom, to her marriages and untimely death.",
|
|
1816
|
+
"popularity": 0.958,
|
|
1817
|
+
"poster_path": "/55Or5geaZl82NJYZ9EM7pzggKDA.jpg",
|
|
1818
|
+
"release_date": "1980-11-10",
|
|
1819
|
+
"title": "Marilyn: The Untold Story",
|
|
1820
|
+
"video": false,
|
|
1821
|
+
"vote_average": 8.3,
|
|
1822
|
+
"vote_count": 2,
|
|
1823
|
+
},
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
"cursor": "NDExMjc6OnsicXVlcnkiOiJtYXJpbHluIG1vbnJvZSIsInNlYXJjaFR5cGUiOiJNVUxUSSJ9OjpzZWFyY2g=",
|
|
1827
|
+
"node": {
|
|
1828
|
+
"adult": false,
|
|
1829
|
+
"backdrop_path": "/ovYhKhmEJxPJypRqC1WL01IOhlB.jpg",
|
|
1830
|
+
"genre_ids": [
|
|
1831
|
+
10770,
|
|
1832
|
+
18,
|
|
1833
|
+
36,
|
|
1834
|
+
],
|
|
1835
|
+
"id": 41127,
|
|
1836
|
+
"media_type": "Movie",
|
|
1837
|
+
"original_language": "en",
|
|
1838
|
+
"original_title": "Norma Jean & Marilyn",
|
|
1839
|
+
"overview": "This film follows Norma Jean from her simple, ambitious youth to her sex star pinnacle and back down. She moves from lover to lover in order to further her career. She finds fame but never happiness, only knowing seduction but not love.",
|
|
1840
|
+
"popularity": 2.588,
|
|
1841
|
+
"poster_path": "/uQ1ZrGxA0N6cgeTTl1vZhrdp30C.jpg",
|
|
1842
|
+
"release_date": "1996-05-18",
|
|
1843
|
+
"title": "Norma Jean & Marilyn",
|
|
1844
|
+
"video": false,
|
|
1845
|
+
"vote_average": 6.4,
|
|
1846
|
+
"vote_count": 20,
|
|
1847
|
+
},
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
"cursor": "NzU5MDA6OnsicXVlcnkiOiJtYXJpbHluIG1vbnJvZSIsInNlYXJjaFR5cGUiOiJNVUxUSSJ9OjpzZWFyY2g=",
|
|
1851
|
+
"node": {
|
|
1852
|
+
"adult": false,
|
|
1853
|
+
"backdrop_path": "/kQXQkJTIuPDDcW4BlvlEcEGwmVF.jpg",
|
|
1854
|
+
"genre_ids": [
|
|
1855
|
+
18,
|
|
1856
|
+
10749,
|
|
1857
|
+
],
|
|
1858
|
+
"id": 75900,
|
|
1859
|
+
"media_type": "Movie",
|
|
1860
|
+
"original_language": "en",
|
|
1861
|
+
"original_title": "My Week With Marilyn",
|
|
1862
|
+
"overview": "London, 1956. Genius actor and film director Laurence Olivier is about to begin the shooting of his upcoming movie, premiered in 1957 as The Prince and the Showgirl, starring Marilyn Monroe. Young Colin Clark, who dreams on having a career in movie business, manages to get a job on the set as third assistant director.",
|
|
1863
|
+
"popularity": 13.04,
|
|
1864
|
+
"poster_path": "/5naqXRY1Zug5cyJJbO9H4DOg28q.jpg",
|
|
1865
|
+
"release_date": "2011-11-23",
|
|
1866
|
+
"title": "My Week With Marilyn",
|
|
1867
|
+
"video": false,
|
|
1868
|
+
"vote_average": 6.7,
|
|
1869
|
+
"vote_count": 1026,
|
|
1870
|
+
},
|
|
1871
|
+
},
|
|
1872
|
+
],
|
|
1873
|
+
"errors": [],
|
|
1874
|
+
"nodes": [
|
|
1875
|
+
{
|
|
1876
|
+
"adult": false,
|
|
1877
|
+
"backdrop_path": "/a3fTIciWMsp856yOC25fKBFyyCF.jpg",
|
|
1878
|
+
"genre_ids": [
|
|
1879
|
+
18,
|
|
1880
|
+
],
|
|
1881
|
+
"id": 97782,
|
|
1882
|
+
"media_type": "Movie",
|
|
1883
|
+
"original_language": "en",
|
|
1884
|
+
"original_title": "Goodbye, Norma Jean",
|
|
1885
|
+
"overview": "Norma Jean Baker finds her way to Hollywood and is turned into sex symbol Marilyn Monroe.",
|
|
1886
|
+
"popularity": 1.032,
|
|
1887
|
+
"poster_path": "/unI9djSACymOwKEGElUGCcvvw6b.jpg",
|
|
1888
|
+
"release_date": "1976-02-01",
|
|
1889
|
+
"title": "Goodbye, Norma Jean",
|
|
1890
|
+
"video": false,
|
|
1891
|
+
"vote_average": 3.6,
|
|
1892
|
+
"vote_count": 4,
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"adult": false,
|
|
1896
|
+
"backdrop_path": "/nWdEBsHiQaMk62zsFwOJeMMS5XW.jpg",
|
|
1897
|
+
"genre_ids": [
|
|
1898
|
+
99,
|
|
1899
|
+
],
|
|
1900
|
+
"id": 121831,
|
|
1901
|
+
"media_type": "Movie",
|
|
1902
|
+
"original_language": "en",
|
|
1903
|
+
"original_title": "Love, Marilyn",
|
|
1904
|
+
"overview": "Using the book 'Fragments', which collects Marilyn Monroe's poems, notes and letters, and with participation from the Arthur Miller and Truman Capote estates who have contributed more material, each of the actresses will embody the legend at various stages in her life.",
|
|
1905
|
+
"popularity": 5.894,
|
|
1906
|
+
"poster_path": "/1YPp03izMP73O8AVqAk2acS0z1C.jpg",
|
|
1907
|
+
"release_date": "2013-05-30",
|
|
1908
|
+
"title": "Love, Marilyn",
|
|
1909
|
+
"video": false,
|
|
1910
|
+
"vote_average": 6.5,
|
|
1911
|
+
"vote_count": 47,
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"adult": false,
|
|
1915
|
+
"backdrop_path": "/tutL9boVor41sSGwC5B5V6kof9J.jpg",
|
|
1916
|
+
"genre_ids": [
|
|
1917
|
+
10770,
|
|
1918
|
+
18,
|
|
1919
|
+
],
|
|
1920
|
+
"id": 217197,
|
|
1921
|
+
"media_type": "Movie",
|
|
1922
|
+
"original_language": "en",
|
|
1923
|
+
"original_title": "Marilyn: The Untold Story",
|
|
1924
|
+
"overview": "The story of the life and times of the legendary Hollywood blonde bombshell Marilyn Monroe, from her meteoric rise to stardom, to her marriages and untimely death.",
|
|
1925
|
+
"popularity": 0.958,
|
|
1926
|
+
"poster_path": "/55Or5geaZl82NJYZ9EM7pzggKDA.jpg",
|
|
1927
|
+
"release_date": "1980-11-10",
|
|
1928
|
+
"title": "Marilyn: The Untold Story",
|
|
1929
|
+
"video": false,
|
|
1930
|
+
"vote_average": 8.3,
|
|
1931
|
+
"vote_count": 2,
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
"adult": false,
|
|
1935
|
+
"backdrop_path": "/ovYhKhmEJxPJypRqC1WL01IOhlB.jpg",
|
|
1936
|
+
"genre_ids": [
|
|
1937
|
+
10770,
|
|
1938
|
+
18,
|
|
1939
|
+
36,
|
|
1940
|
+
],
|
|
1941
|
+
"id": 41127,
|
|
1942
|
+
"media_type": "Movie",
|
|
1943
|
+
"original_language": "en",
|
|
1944
|
+
"original_title": "Norma Jean & Marilyn",
|
|
1945
|
+
"overview": "This film follows Norma Jean from her simple, ambitious youth to her sex star pinnacle and back down. She moves from lover to lover in order to further her career. She finds fame but never happiness, only knowing seduction but not love.",
|
|
1946
|
+
"popularity": 2.588,
|
|
1947
|
+
"poster_path": "/uQ1ZrGxA0N6cgeTTl1vZhrdp30C.jpg",
|
|
1948
|
+
"release_date": "1996-05-18",
|
|
1949
|
+
"title": "Norma Jean & Marilyn",
|
|
1950
|
+
"video": false,
|
|
1951
|
+
"vote_average": 6.4,
|
|
1952
|
+
"vote_count": 20,
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
"adult": false,
|
|
1956
|
+
"backdrop_path": "/kQXQkJTIuPDDcW4BlvlEcEGwmVF.jpg",
|
|
1957
|
+
"genre_ids": [
|
|
1958
|
+
18,
|
|
1959
|
+
10749,
|
|
1960
|
+
],
|
|
1961
|
+
"id": 75900,
|
|
1962
|
+
"media_type": "Movie",
|
|
1963
|
+
"original_language": "en",
|
|
1964
|
+
"original_title": "My Week With Marilyn",
|
|
1965
|
+
"overview": "London, 1956. Genius actor and film director Laurence Olivier is about to begin the shooting of his upcoming movie, premiered in 1957 as The Prince and the Showgirl, starring Marilyn Monroe. Young Colin Clark, who dreams on having a career in movie business, manages to get a job on the set as third assistant director.",
|
|
1966
|
+
"popularity": 13.04,
|
|
1967
|
+
"poster_path": "/5naqXRY1Zug5cyJJbO9H4DOg28q.jpg",
|
|
1968
|
+
"release_date": "2011-11-23",
|
|
1969
|
+
"title": "My Week With Marilyn",
|
|
1970
|
+
"video": false,
|
|
1971
|
+
"vote_average": 6.7,
|
|
1972
|
+
"vote_count": 1026,
|
|
1973
|
+
},
|
|
1974
|
+
],
|
|
1975
|
+
"pageInfo": {
|
|
1976
|
+
"endCursor": "NzU5MDA6OnsicXVlcnkiOiJtYXJpbHluIG1vbnJvZSIsInNlYXJjaFR5cGUiOiJNVUxUSSJ9OjpzZWFyY2g=",
|
|
1977
|
+
"hasNextPage": false,
|
|
1978
|
+
"hasPreviousPage": true,
|
|
1979
|
+
"startCursor": "OTc3ODI6OnsicXVlcnkiOiJtYXJpbHluIG1vbnJvZSIsInNlYXJjaFR5cGUiOiJNVUxUSSJ9OjpzZWFyY2g=",
|
|
1980
|
+
},
|
|
1981
|
+
"totalCount": 27,
|
|
1982
|
+
}
|
|
1983
|
+
`;
|
|
1984
|
+
|
|
1985
|
+
exports[`resolveSearch > multi when the second to last 5 are requested should return the correct response 1`] = `
|
|
1986
|
+
{
|
|
1987
|
+
"edges": [
|
|
1988
|
+
{
|
|
1989
|
+
"cursor": "NDA1Mjg1Ojp7InF1ZXJ5IjoibWFyaWx5biBtb25yb2UiLCJzZWFyY2hUeXBlIjoiTVVMVEkifTo6c2VhcmNo",
|
|
1990
|
+
"node": {
|
|
1991
|
+
"adult": false,
|
|
1992
|
+
"backdrop_path": null,
|
|
1993
|
+
"genre_ids": [
|
|
1994
|
+
10402,
|
|
1995
|
+
],
|
|
1996
|
+
"id": 405285,
|
|
1997
|
+
"media_type": "Movie",
|
|
1998
|
+
"original_language": "de",
|
|
1999
|
+
"original_title": "Marilyn Monroe: Video Set mit Fotoshow",
|
|
2000
|
+
"overview": "",
|
|
2001
|
+
"popularity": 0.6,
|
|
2002
|
+
"poster_path": null,
|
|
2003
|
+
"release_date": "2015-05-20",
|
|
2004
|
+
"title": "Marilyn Monroe: Video Set mit Fotoshow",
|
|
2005
|
+
"video": false,
|
|
2006
|
+
"vote_average": 0,
|
|
2007
|
+
"vote_count": 0,
|
|
2008
|
+
},
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"cursor": "MTA1OTc0Ojp7InF1ZXJ5IjoibWFyaWx5biBtb25yb2UiLCJzZWFyY2hUeXBlIjoiTVVMVEkifTo6c2VhcmNo",
|
|
2012
|
+
"node": {
|
|
2013
|
+
"adult": false,
|
|
2014
|
+
"backdrop_path": null,
|
|
2015
|
+
"genre_ids": [
|
|
2016
|
+
99,
|
|
2017
|
+
],
|
|
2018
|
+
"id": 105974,
|
|
2019
|
+
"media_type": "Movie",
|
|
2020
|
+
"original_language": "en",
|
|
2021
|
+
"original_title": "Fascination: Unauthorized Story of Marilyn Monroe",
|
|
2022
|
+
"overview": "",
|
|
2023
|
+
"popularity": 0.6,
|
|
2024
|
+
"poster_path": null,
|
|
2025
|
+
"release_date": "2012-05-15",
|
|
2026
|
+
"title": "Fascination: Unauthorized Story of Marilyn Monroe",
|
|
2027
|
+
"video": false,
|
|
2028
|
+
"vote_average": 0,
|
|
2029
|
+
"vote_count": 0,
|
|
2030
|
+
},
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
"cursor": "NjYwNDgyOjp7InF1ZXJ5IjoibWFyaWx5biBtb25yb2UiLCJzZWFyY2hUeXBlIjoiTVVMVEkifTo6c2VhcmNo",
|
|
2034
|
+
"node": {
|
|
2035
|
+
"adult": false,
|
|
2036
|
+
"backdrop_path": null,
|
|
2037
|
+
"genre_ids": [],
|
|
2038
|
+
"id": 660482,
|
|
2039
|
+
"media_type": "Movie",
|
|
2040
|
+
"original_language": "en",
|
|
2041
|
+
"original_title": "Marilyn Monroe: Portrait of a Legend...Suicide Or Murder?",
|
|
2042
|
+
"overview": "As the definitive sex symbol of all time, Marilyn Monroe's life continues to mystify us even today - over 30 years after her tragic death the question remains: Suicide Or Murder? Her private life has been probed and investigated more than once, but the cloud of mystique surrounding the life and death the most loved and envied goddess in history has never been completely unveiled until now.",
|
|
2043
|
+
"popularity": 0.6,
|
|
2044
|
+
"poster_path": "/wUpeBBsyaIg4b9NSij8MIwsVm0k.jpg",
|
|
2045
|
+
"release_date": "1995-01-01",
|
|
2046
|
+
"title": "Marilyn Monroe: Portrait of a Legend...Suicide Or Murder?",
|
|
2047
|
+
"video": true,
|
|
2048
|
+
"vote_average": 0,
|
|
2049
|
+
"vote_count": 0,
|
|
2050
|
+
},
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
"cursor": "NDE0OTkxOjp7InF1ZXJ5IjoibWFyaWx5biBtb25yb2UiLCJzZWFyY2hUeXBlIjoiTVVMVEkifTo6c2VhcmNo",
|
|
2054
|
+
"node": {
|
|
2055
|
+
"adult": false,
|
|
2056
|
+
"backdrop_path": null,
|
|
2057
|
+
"genre_ids": [
|
|
2058
|
+
35,
|
|
2059
|
+
18,
|
|
2060
|
+
],
|
|
2061
|
+
"id": 414991,
|
|
2062
|
+
"media_type": "Movie",
|
|
2063
|
+
"original_language": "en",
|
|
2064
|
+
"original_title": "Marilyn Monroe's School for French Girls",
|
|
2065
|
+
"overview": "An inside joke about a Marilyn Monroe t-shirt causes a rift between friends who realize they have different ideas about what's funny.",
|
|
2066
|
+
"popularity": 0.6,
|
|
2067
|
+
"poster_path": null,
|
|
2068
|
+
"release_date": "2016-01-01",
|
|
2069
|
+
"title": "Marilyn Monroe's School for French Girls",
|
|
2070
|
+
"video": false,
|
|
2071
|
+
"vote_average": 0,
|
|
2072
|
+
"vote_count": 0,
|
|
2073
|
+
},
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"cursor": "MTE3NTUzOjp7InF1ZXJ5IjoibWFyaWx5biBtb25yb2UiLCJzZWFyY2hUeXBlIjoiTVVMVEkifTo6c2VhcmNo",
|
|
2077
|
+
"node": {
|
|
2078
|
+
"adult": false,
|
|
2079
|
+
"backdrop_path": "/iJyKqQ7RwKGB1MZvtENVFFRgK1m.jpg",
|
|
2080
|
+
"genre_ids": [
|
|
2081
|
+
35,
|
|
2082
|
+
18,
|
|
2083
|
+
],
|
|
2084
|
+
"id": 117553,
|
|
2085
|
+
"media_type": "Movie",
|
|
2086
|
+
"original_language": "en",
|
|
2087
|
+
"original_title": "Calendar Girl",
|
|
2088
|
+
"overview": "Like many adolescent boys, Roy Darpinian had the hots for movie divas, and one in particular was his wet dream as half of America's in the 1950s: Marilyn Monroe. The difference is, one summer holiday he actually decided to enlist his spineless buddies, Scott Foreman and Ned Bleuer, to actually drive all the way to Hollywood and make as many desperate attempts as it takes to meet her or get arrested trying, and no setback or embarrassment (even publicly bare-ass) can stop or distract him. Against all odds, he finally even got a chance to help her...",
|
|
2089
|
+
"popularity": 4.489,
|
|
2090
|
+
"poster_path": "/ljSqZTl5oophHsH1Qtyv7AF2BW6.jpg",
|
|
2091
|
+
"release_date": "1993-09-03",
|
|
2092
|
+
"title": "Calendar Girl",
|
|
2093
|
+
"video": false,
|
|
2094
|
+
"vote_average": 5.1,
|
|
2095
|
+
"vote_count": 42,
|
|
2096
|
+
},
|
|
2097
|
+
},
|
|
2098
|
+
],
|
|
2099
|
+
"errors": [],
|
|
2100
|
+
"nodes": [
|
|
2101
|
+
{
|
|
2102
|
+
"adult": false,
|
|
2103
|
+
"backdrop_path": null,
|
|
2104
|
+
"genre_ids": [
|
|
2105
|
+
10402,
|
|
2106
|
+
],
|
|
2107
|
+
"id": 405285,
|
|
2108
|
+
"media_type": "Movie",
|
|
2109
|
+
"original_language": "de",
|
|
2110
|
+
"original_title": "Marilyn Monroe: Video Set mit Fotoshow",
|
|
2111
|
+
"overview": "",
|
|
2112
|
+
"popularity": 0.6,
|
|
2113
|
+
"poster_path": null,
|
|
2114
|
+
"release_date": "2015-05-20",
|
|
2115
|
+
"title": "Marilyn Monroe: Video Set mit Fotoshow",
|
|
2116
|
+
"video": false,
|
|
2117
|
+
"vote_average": 0,
|
|
2118
|
+
"vote_count": 0,
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"adult": false,
|
|
2122
|
+
"backdrop_path": null,
|
|
2123
|
+
"genre_ids": [
|
|
2124
|
+
99,
|
|
2125
|
+
],
|
|
2126
|
+
"id": 105974,
|
|
2127
|
+
"media_type": "Movie",
|
|
2128
|
+
"original_language": "en",
|
|
2129
|
+
"original_title": "Fascination: Unauthorized Story of Marilyn Monroe",
|
|
2130
|
+
"overview": "",
|
|
2131
|
+
"popularity": 0.6,
|
|
2132
|
+
"poster_path": null,
|
|
2133
|
+
"release_date": "2012-05-15",
|
|
2134
|
+
"title": "Fascination: Unauthorized Story of Marilyn Monroe",
|
|
2135
|
+
"video": false,
|
|
2136
|
+
"vote_average": 0,
|
|
2137
|
+
"vote_count": 0,
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"adult": false,
|
|
2141
|
+
"backdrop_path": null,
|
|
2142
|
+
"genre_ids": [],
|
|
2143
|
+
"id": 660482,
|
|
2144
|
+
"media_type": "Movie",
|
|
2145
|
+
"original_language": "en",
|
|
2146
|
+
"original_title": "Marilyn Monroe: Portrait of a Legend...Suicide Or Murder?",
|
|
2147
|
+
"overview": "As the definitive sex symbol of all time, Marilyn Monroe's life continues to mystify us even today - over 30 years after her tragic death the question remains: Suicide Or Murder? Her private life has been probed and investigated more than once, but the cloud of mystique surrounding the life and death the most loved and envied goddess in history has never been completely unveiled until now.",
|
|
2148
|
+
"popularity": 0.6,
|
|
2149
|
+
"poster_path": "/wUpeBBsyaIg4b9NSij8MIwsVm0k.jpg",
|
|
2150
|
+
"release_date": "1995-01-01",
|
|
2151
|
+
"title": "Marilyn Monroe: Portrait of a Legend...Suicide Or Murder?",
|
|
2152
|
+
"video": true,
|
|
2153
|
+
"vote_average": 0,
|
|
2154
|
+
"vote_count": 0,
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
"adult": false,
|
|
2158
|
+
"backdrop_path": null,
|
|
2159
|
+
"genre_ids": [
|
|
2160
|
+
35,
|
|
2161
|
+
18,
|
|
2162
|
+
],
|
|
2163
|
+
"id": 414991,
|
|
2164
|
+
"media_type": "Movie",
|
|
2165
|
+
"original_language": "en",
|
|
2166
|
+
"original_title": "Marilyn Monroe's School for French Girls",
|
|
2167
|
+
"overview": "An inside joke about a Marilyn Monroe t-shirt causes a rift between friends who realize they have different ideas about what's funny.",
|
|
2168
|
+
"popularity": 0.6,
|
|
2169
|
+
"poster_path": null,
|
|
2170
|
+
"release_date": "2016-01-01",
|
|
2171
|
+
"title": "Marilyn Monroe's School for French Girls",
|
|
2172
|
+
"video": false,
|
|
2173
|
+
"vote_average": 0,
|
|
2174
|
+
"vote_count": 0,
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
"adult": false,
|
|
2178
|
+
"backdrop_path": "/iJyKqQ7RwKGB1MZvtENVFFRgK1m.jpg",
|
|
2179
|
+
"genre_ids": [
|
|
2180
|
+
35,
|
|
2181
|
+
18,
|
|
2182
|
+
],
|
|
2183
|
+
"id": 117553,
|
|
2184
|
+
"media_type": "Movie",
|
|
2185
|
+
"original_language": "en",
|
|
2186
|
+
"original_title": "Calendar Girl",
|
|
2187
|
+
"overview": "Like many adolescent boys, Roy Darpinian had the hots for movie divas, and one in particular was his wet dream as half of America's in the 1950s: Marilyn Monroe. The difference is, one summer holiday he actually decided to enlist his spineless buddies, Scott Foreman and Ned Bleuer, to actually drive all the way to Hollywood and make as many desperate attempts as it takes to meet her or get arrested trying, and no setback or embarrassment (even publicly bare-ass) can stop or distract him. Against all odds, he finally even got a chance to help her...",
|
|
2188
|
+
"popularity": 4.489,
|
|
2189
|
+
"poster_path": "/ljSqZTl5oophHsH1Qtyv7AF2BW6.jpg",
|
|
2190
|
+
"release_date": "1993-09-03",
|
|
2191
|
+
"title": "Calendar Girl",
|
|
2192
|
+
"video": false,
|
|
2193
|
+
"vote_average": 5.1,
|
|
2194
|
+
"vote_count": 42,
|
|
2195
|
+
},
|
|
2196
|
+
],
|
|
2197
|
+
"pageInfo": {
|
|
2198
|
+
"endCursor": "MTE3NTUzOjp7InF1ZXJ5IjoibWFyaWx5biBtb25yb2UiLCJzZWFyY2hUeXBlIjoiTVVMVEkifTo6c2VhcmNo",
|
|
2199
|
+
"hasNextPage": true,
|
|
2200
|
+
"hasPreviousPage": true,
|
|
2201
|
+
"startCursor": "NDA1Mjg1Ojp7InF1ZXJ5IjoibWFyaWx5biBtb25yb2UiLCJzZWFyY2hUeXBlIjoiTVVMVEkifTo6c2VhcmNo",
|
|
2202
|
+
},
|
|
2203
|
+
"totalCount": 27,
|
|
2204
|
+
}
|
|
2205
|
+
`;
|
|
2206
|
+
|
|
2207
|
+
exports[`resolveSearch > people when the first 5 are requested should return the correct response 1`] = `
|
|
2208
|
+
{
|
|
2209
|
+
"edges": [
|
|
2210
|
+
{
|
|
2211
|
+
"cursor": "NTAwOjp7InF1ZXJ5IjoidG9tIGNydWlzZSIsInNlYXJjaFR5cGUiOiJQRVJTT04ifTo6c2VhcmNo",
|
|
2212
|
+
"node": {
|
|
2213
|
+
"adult": false,
|
|
2214
|
+
"gender": 2,
|
|
2215
|
+
"id": 500,
|
|
2216
|
+
"known_for": [
|
|
2217
|
+
{
|
|
2218
|
+
"adult": false,
|
|
2219
|
+
"backdrop_path": "/auZIuHEUec5tBTns3tCRXfayxZq.jpg",
|
|
2220
|
+
"genre_ids": [
|
|
2221
|
+
28,
|
|
2222
|
+
878,
|
|
2223
|
+
],
|
|
2224
|
+
"id": 137113,
|
|
2225
|
+
"media_type": "movie",
|
|
2226
|
+
"original_language": "en",
|
|
2227
|
+
"original_title": "Edge of Tomorrow",
|
|
2228
|
+
"overview": "Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.",
|
|
2229
|
+
"poster_path": "/uUHvlkLavotfGsNtosDy8ShsIYF.jpg",
|
|
2230
|
+
"release_date": "2014-05-27",
|
|
2231
|
+
"title": "Edge of Tomorrow",
|
|
2232
|
+
"video": false,
|
|
2233
|
+
"vote_average": 7.6,
|
|
2234
|
+
"vote_count": 11048,
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"adult": false,
|
|
2238
|
+
"backdrop_path": "/Pv6vu1lxgct3GWhUXVVOMZwNlZ.jpg",
|
|
2239
|
+
"genre_ids": [
|
|
2240
|
+
28,
|
|
2241
|
+
878,
|
|
2242
|
+
12,
|
|
2243
|
+
9648,
|
|
2244
|
+
],
|
|
2245
|
+
"id": 75612,
|
|
2246
|
+
"media_type": "movie",
|
|
2247
|
+
"original_language": "en",
|
|
2248
|
+
"original_title": "Oblivion",
|
|
2249
|
+
"overview": "Jack Harper is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack’s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.",
|
|
2250
|
+
"poster_path": "/eO3r38fwnhb58M1YgcjQBd3VNcp.jpg",
|
|
2251
|
+
"release_date": "2013-04-10",
|
|
2252
|
+
"title": "Oblivion",
|
|
2253
|
+
"video": false,
|
|
2254
|
+
"vote_average": 6.6,
|
|
2255
|
+
"vote_count": 8877,
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
"adult": false,
|
|
2259
|
+
"backdrop_path": "/hqyjzDRCs1N5gEsh2gklzPdsEFD.jpg",
|
|
2260
|
+
"genre_ids": [
|
|
2261
|
+
28,
|
|
2262
|
+
53,
|
|
2263
|
+
12,
|
|
2264
|
+
],
|
|
2265
|
+
"id": 56292,
|
|
2266
|
+
"media_type": "movie",
|
|
2267
|
+
"original_language": "en",
|
|
2268
|
+
"original_title": "Mission: Impossible - Ghost Protocol",
|
|
2269
|
+
"overview": "Ethan Hunt and his team are racing against time to track down a dangerous terrorist named Hendricks, who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.",
|
|
2270
|
+
"poster_path": "/7GCKNRbzcA4rJXAKoE8KS9IDnZP.jpg",
|
|
2271
|
+
"release_date": "2011-12-07",
|
|
2272
|
+
"title": "Mission: Impossible - Ghost Protocol",
|
|
2273
|
+
"video": false,
|
|
2274
|
+
"vote_average": 7,
|
|
2275
|
+
"vote_count": 7925,
|
|
2276
|
+
},
|
|
2277
|
+
],
|
|
2278
|
+
"known_for_department": "Acting",
|
|
2279
|
+
"media_type": "Person",
|
|
2280
|
+
"name": "Tom Cruise",
|
|
2281
|
+
"popularity": 22.377,
|
|
2282
|
+
"profile_path": "/8qBylBsQf4llkGrWR3qAsOtOU8O.jpg",
|
|
2283
|
+
},
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"cursor": "MzEwNDg1NDo6eyJxdWVyeSI6InRvbSBjcnVpc2UiLCJzZWFyY2hUeXBlIjoiUEVSU09OIn06OnNlYXJjaA==",
|
|
2287
|
+
"node": {
|
|
2288
|
+
"adult": false,
|
|
2289
|
+
"gender": 0,
|
|
2290
|
+
"id": 3104854,
|
|
2291
|
+
"known_for": [],
|
|
2292
|
+
"known_for_department": "Acting",
|
|
2293
|
+
"media_type": "Person",
|
|
2294
|
+
"name": "Tom Cruise",
|
|
2295
|
+
"popularity": 0.6,
|
|
2296
|
+
"profile_path": null,
|
|
2297
|
+
},
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"cursor": "Mjg1MjYzOTo6eyJxdWVyeSI6InRvbSBjcnVpc2UiLCJzZWFyY2hUeXBlIjoiUEVSU09OIn06OnNlYXJjaA==",
|
|
2301
|
+
"node": {
|
|
2302
|
+
"adult": false,
|
|
2303
|
+
"gender": 0,
|
|
2304
|
+
"id": 2852639,
|
|
2305
|
+
"known_for": [],
|
|
2306
|
+
"known_for_department": "Acting",
|
|
2307
|
+
"media_type": "Person",
|
|
2308
|
+
"name": "Tom Cruise Jr.",
|
|
2309
|
+
"popularity": 0.6,
|
|
2310
|
+
"profile_path": null,
|
|
2311
|
+
},
|
|
2312
|
+
},
|
|
2313
|
+
],
|
|
2314
|
+
"errors": [],
|
|
2315
|
+
"nodes": [
|
|
2316
|
+
{
|
|
2317
|
+
"adult": false,
|
|
2318
|
+
"gender": 2,
|
|
2319
|
+
"id": 500,
|
|
2320
|
+
"known_for": [
|
|
2321
|
+
{
|
|
2322
|
+
"adult": false,
|
|
2323
|
+
"backdrop_path": "/auZIuHEUec5tBTns3tCRXfayxZq.jpg",
|
|
2324
|
+
"genre_ids": [
|
|
2325
|
+
28,
|
|
2326
|
+
878,
|
|
2327
|
+
],
|
|
2328
|
+
"id": 137113,
|
|
2329
|
+
"media_type": "movie",
|
|
2330
|
+
"original_language": "en",
|
|
2331
|
+
"original_title": "Edge of Tomorrow",
|
|
2332
|
+
"overview": "Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.",
|
|
2333
|
+
"poster_path": "/uUHvlkLavotfGsNtosDy8ShsIYF.jpg",
|
|
2334
|
+
"release_date": "2014-05-27",
|
|
2335
|
+
"title": "Edge of Tomorrow",
|
|
2336
|
+
"video": false,
|
|
2337
|
+
"vote_average": 7.6,
|
|
2338
|
+
"vote_count": 11048,
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"adult": false,
|
|
2342
|
+
"backdrop_path": "/Pv6vu1lxgct3GWhUXVVOMZwNlZ.jpg",
|
|
2343
|
+
"genre_ids": [
|
|
2344
|
+
28,
|
|
2345
|
+
878,
|
|
2346
|
+
12,
|
|
2347
|
+
9648,
|
|
2348
|
+
],
|
|
2349
|
+
"id": 75612,
|
|
2350
|
+
"media_type": "movie",
|
|
2351
|
+
"original_language": "en",
|
|
2352
|
+
"original_title": "Oblivion",
|
|
2353
|
+
"overview": "Jack Harper is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack’s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.",
|
|
2354
|
+
"poster_path": "/eO3r38fwnhb58M1YgcjQBd3VNcp.jpg",
|
|
2355
|
+
"release_date": "2013-04-10",
|
|
2356
|
+
"title": "Oblivion",
|
|
2357
|
+
"video": false,
|
|
2358
|
+
"vote_average": 6.6,
|
|
2359
|
+
"vote_count": 8877,
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
"adult": false,
|
|
2363
|
+
"backdrop_path": "/hqyjzDRCs1N5gEsh2gklzPdsEFD.jpg",
|
|
2364
|
+
"genre_ids": [
|
|
2365
|
+
28,
|
|
2366
|
+
53,
|
|
2367
|
+
12,
|
|
2368
|
+
],
|
|
2369
|
+
"id": 56292,
|
|
2370
|
+
"media_type": "movie",
|
|
2371
|
+
"original_language": "en",
|
|
2372
|
+
"original_title": "Mission: Impossible - Ghost Protocol",
|
|
2373
|
+
"overview": "Ethan Hunt and his team are racing against time to track down a dangerous terrorist named Hendricks, who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.",
|
|
2374
|
+
"poster_path": "/7GCKNRbzcA4rJXAKoE8KS9IDnZP.jpg",
|
|
2375
|
+
"release_date": "2011-12-07",
|
|
2376
|
+
"title": "Mission: Impossible - Ghost Protocol",
|
|
2377
|
+
"video": false,
|
|
2378
|
+
"vote_average": 7,
|
|
2379
|
+
"vote_count": 7925,
|
|
2380
|
+
},
|
|
2381
|
+
],
|
|
2382
|
+
"known_for_department": "Acting",
|
|
2383
|
+
"media_type": "Person",
|
|
2384
|
+
"name": "Tom Cruise",
|
|
2385
|
+
"popularity": 22.377,
|
|
2386
|
+
"profile_path": "/8qBylBsQf4llkGrWR3qAsOtOU8O.jpg",
|
|
2387
|
+
},
|
|
2388
|
+
{
|
|
2389
|
+
"adult": false,
|
|
2390
|
+
"gender": 0,
|
|
2391
|
+
"id": 3104854,
|
|
2392
|
+
"known_for": [],
|
|
2393
|
+
"known_for_department": "Acting",
|
|
2394
|
+
"media_type": "Person",
|
|
2395
|
+
"name": "Tom Cruise",
|
|
2396
|
+
"popularity": 0.6,
|
|
2397
|
+
"profile_path": null,
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"adult": false,
|
|
2401
|
+
"gender": 0,
|
|
2402
|
+
"id": 2852639,
|
|
2403
|
+
"known_for": [],
|
|
2404
|
+
"known_for_department": "Acting",
|
|
2405
|
+
"media_type": "Person",
|
|
2406
|
+
"name": "Tom Cruise Jr.",
|
|
2407
|
+
"popularity": 0.6,
|
|
2408
|
+
"profile_path": null,
|
|
2409
|
+
},
|
|
2410
|
+
],
|
|
2411
|
+
"pageInfo": {
|
|
2412
|
+
"endCursor": "Mjg1MjYzOTo6eyJxdWVyeSI6InRvbSBjcnVpc2UiLCJzZWFyY2hUeXBlIjoiUEVSU09OIn06OnNlYXJjaA==",
|
|
2413
|
+
"hasNextPage": false,
|
|
2414
|
+
"hasPreviousPage": false,
|
|
2415
|
+
"startCursor": "NTAwOjp7InF1ZXJ5IjoidG9tIGNydWlzZSIsInNlYXJjaFR5cGUiOiJQRVJTT04ifTo6c2VhcmNo",
|
|
2416
|
+
},
|
|
2417
|
+
"totalCount": 3,
|
|
2418
|
+
}
|
|
2419
|
+
`;
|
|
2420
|
+
|
|
2421
|
+
exports[`resolveSearch > tv when the first 5 are requested should return the correct response 1`] = `
|
|
2422
|
+
{
|
|
2423
|
+
"edges": [
|
|
2424
|
+
{
|
|
2425
|
+
"cursor": "NDY2NDg6OnsicXVlcnkiOiJ0cnVlIGRldGVjdGl2ZSIsInNlYXJjaFR5cGUiOiJUViJ9OjpzZWFyY2g=",
|
|
2426
|
+
"node": {
|
|
2427
|
+
"backdrop_path": "/2Ahm0YjLNQKuzSf9LOkHrXk8qIE.jpg",
|
|
2428
|
+
"first_air_date": "2014-01-12",
|
|
2429
|
+
"genre_ids": [
|
|
2430
|
+
18,
|
|
2431
|
+
],
|
|
2432
|
+
"id": 46648,
|
|
2433
|
+
"media_type": "Tv",
|
|
2434
|
+
"name": "True Detective",
|
|
2435
|
+
"origin_country": [
|
|
2436
|
+
"US",
|
|
2437
|
+
],
|
|
2438
|
+
"original_language": "en",
|
|
2439
|
+
"original_name": "True Detective",
|
|
2440
|
+
"overview": "An American anthology police detective series utilizing multiple timelines in which investigations seem to unearth personal and professional secrets of those involved, both within or outside the law.",
|
|
2441
|
+
"popularity": 44.638,
|
|
2442
|
+
"poster_path": "/aowr4xpLP5sRCL50TkuADomJ98T.jpg",
|
|
2443
|
+
"vote_average": 8.3,
|
|
2444
|
+
"vote_count": 1948,
|
|
2445
|
+
},
|
|
2446
|
+
},
|
|
2447
|
+
],
|
|
2448
|
+
"errors": [],
|
|
2449
|
+
"nodes": [
|
|
2450
|
+
{
|
|
2451
|
+
"backdrop_path": "/2Ahm0YjLNQKuzSf9LOkHrXk8qIE.jpg",
|
|
2452
|
+
"first_air_date": "2014-01-12",
|
|
2453
|
+
"genre_ids": [
|
|
2454
|
+
18,
|
|
2455
|
+
],
|
|
2456
|
+
"id": 46648,
|
|
2457
|
+
"media_type": "Tv",
|
|
2458
|
+
"name": "True Detective",
|
|
2459
|
+
"origin_country": [
|
|
2460
|
+
"US",
|
|
2461
|
+
],
|
|
2462
|
+
"original_language": "en",
|
|
2463
|
+
"original_name": "True Detective",
|
|
2464
|
+
"overview": "An American anthology police detective series utilizing multiple timelines in which investigations seem to unearth personal and professional secrets of those involved, both within or outside the law.",
|
|
2465
|
+
"popularity": 44.638,
|
|
2466
|
+
"poster_path": "/aowr4xpLP5sRCL50TkuADomJ98T.jpg",
|
|
2467
|
+
"vote_average": 8.3,
|
|
2468
|
+
"vote_count": 1948,
|
|
2469
|
+
},
|
|
2470
|
+
],
|
|
2471
|
+
"pageInfo": {
|
|
2472
|
+
"endCursor": "NDY2NDg6OnsicXVlcnkiOiJ0cnVlIGRldGVjdGl2ZSIsInNlYXJjaFR5cGUiOiJUViJ9OjpzZWFyY2g=",
|
|
2473
|
+
"hasNextPage": false,
|
|
2474
|
+
"hasPreviousPage": false,
|
|
2475
|
+
"startCursor": "NDY2NDg6OnsicXVlcnkiOiJ0cnVlIGRldGVjdGl2ZSIsInNlYXJjaFR5cGUiOiJUViJ9OjpzZWFyY2g=",
|
|
2476
|
+
},
|
|
2477
|
+
"totalCount": 1,
|
|
2478
|
+
}
|
|
2479
|
+
`;
|