@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,2690 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`resolveMovieCredits > when fieldName is cast should return the correct response 1`] = `
|
|
4
|
+
[
|
|
5
|
+
{
|
|
6
|
+
"adult": false,
|
|
7
|
+
"cast_id": 7,
|
|
8
|
+
"character": "Luke Skywalker",
|
|
9
|
+
"credit_id": "52fe431ec3a36847f803bb6b",
|
|
10
|
+
"gender": 2,
|
|
11
|
+
"id": 2,
|
|
12
|
+
"known_for_department": "Acting",
|
|
13
|
+
"name": "Mark Hamill",
|
|
14
|
+
"order": 0,
|
|
15
|
+
"original_name": "Mark Hamill",
|
|
16
|
+
"popularity": 13.754,
|
|
17
|
+
"profile_path": "/zMQ93JTLW8KxusKhOlHFZhih3YQ.jpg",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"adult": false,
|
|
21
|
+
"cast_id": 8,
|
|
22
|
+
"character": "Han Solo",
|
|
23
|
+
"credit_id": "52fe431ec3a36847f803bb6f",
|
|
24
|
+
"gender": 2,
|
|
25
|
+
"id": 3,
|
|
26
|
+
"known_for_department": "Acting",
|
|
27
|
+
"name": "Harrison Ford",
|
|
28
|
+
"order": 1,
|
|
29
|
+
"original_name": "Harrison Ford",
|
|
30
|
+
"popularity": 12.791,
|
|
31
|
+
"profile_path": "/5M7oN3sznp99hWYQ9sX0xheswWX.jpg",
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"adult": false,
|
|
35
|
+
"cast_id": 9,
|
|
36
|
+
"character": "Princess Leia",
|
|
37
|
+
"credit_id": "52fe431ec3a36847f803bb73",
|
|
38
|
+
"gender": 1,
|
|
39
|
+
"id": 4,
|
|
40
|
+
"known_for_department": "Acting",
|
|
41
|
+
"name": "Carrie Fisher",
|
|
42
|
+
"order": 2,
|
|
43
|
+
"original_name": "Carrie Fisher",
|
|
44
|
+
"popularity": 4.871,
|
|
45
|
+
"profile_path": "/rfJtncHewKVnHjqpIZvjn24ESeC.jpg",
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"adult": false,
|
|
49
|
+
"cast_id": 11,
|
|
50
|
+
"character": "Lando Calrissian",
|
|
51
|
+
"credit_id": "52fe431ec3a36847f803bb7b",
|
|
52
|
+
"gender": 2,
|
|
53
|
+
"id": 3799,
|
|
54
|
+
"known_for_department": "Acting",
|
|
55
|
+
"name": "Billy Dee Williams",
|
|
56
|
+
"order": 3,
|
|
57
|
+
"original_name": "Billy Dee Williams",
|
|
58
|
+
"popularity": 3.133,
|
|
59
|
+
"profile_path": "/dCiHLiCapPuRwKkM1ytVZ7PwYQY.jpg",
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"adult": false,
|
|
63
|
+
"cast_id": 12,
|
|
64
|
+
"character": "C-3PO",
|
|
65
|
+
"credit_id": "52fe431ec3a36847f803bb7f",
|
|
66
|
+
"gender": 2,
|
|
67
|
+
"id": 6,
|
|
68
|
+
"known_for_department": "Acting",
|
|
69
|
+
"name": "Anthony Daniels",
|
|
70
|
+
"order": 4,
|
|
71
|
+
"original_name": "Anthony Daniels",
|
|
72
|
+
"popularity": 3.572,
|
|
73
|
+
"profile_path": "/7kR4kwXtvXtvrsxWeX3QLX5NS5V.jpg",
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"adult": false,
|
|
77
|
+
"cast_id": 10,
|
|
78
|
+
"character": "Darth Vader",
|
|
79
|
+
"credit_id": "52fe431ec3a36847f803bb77",
|
|
80
|
+
"gender": 2,
|
|
81
|
+
"id": 24342,
|
|
82
|
+
"known_for_department": "Acting",
|
|
83
|
+
"name": "David Prowse",
|
|
84
|
+
"order": 5,
|
|
85
|
+
"original_name": "David Prowse",
|
|
86
|
+
"popularity": 2.192,
|
|
87
|
+
"profile_path": "/xTocYiKHlRYN8tfh8vyQFsRXC0K.jpg",
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"adult": false,
|
|
91
|
+
"cast_id": 13,
|
|
92
|
+
"character": "Chewbacca",
|
|
93
|
+
"credit_id": "52fe431ec3a36847f803bb83",
|
|
94
|
+
"gender": 2,
|
|
95
|
+
"id": 24343,
|
|
96
|
+
"known_for_department": "Acting",
|
|
97
|
+
"name": "Peter Mayhew",
|
|
98
|
+
"order": 6,
|
|
99
|
+
"original_name": "Peter Mayhew",
|
|
100
|
+
"popularity": 2.56,
|
|
101
|
+
"profile_path": "/bWv4RHLhjH6Ujrfhzm6ZC8ms3f2.jpg",
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"adult": false,
|
|
105
|
+
"cast_id": 16,
|
|
106
|
+
"character": "R2-D2",
|
|
107
|
+
"credit_id": "52fe431ec3a36847f803bb91",
|
|
108
|
+
"gender": 2,
|
|
109
|
+
"id": 130,
|
|
110
|
+
"known_for_department": "Acting",
|
|
111
|
+
"name": "Kenny Baker",
|
|
112
|
+
"order": 7,
|
|
113
|
+
"original_name": "Kenny Baker",
|
|
114
|
+
"popularity": 1.895,
|
|
115
|
+
"profile_path": "/uo3RorCoGDWHecLtqjviwzFExxR.jpg",
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"adult": false,
|
|
119
|
+
"cast_id": 17,
|
|
120
|
+
"character": "Yoda (Voice)",
|
|
121
|
+
"credit_id": "52fe431ec3a36847f803bb95",
|
|
122
|
+
"gender": 2,
|
|
123
|
+
"id": 7908,
|
|
124
|
+
"known_for_department": "Acting",
|
|
125
|
+
"name": "Frank Oz",
|
|
126
|
+
"order": 8,
|
|
127
|
+
"original_name": "Frank Oz",
|
|
128
|
+
"popularity": 3.095,
|
|
129
|
+
"profile_path": "/mb2JbT8s6LIgaxj6QTph0NW1pmI.jpg",
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"adult": false,
|
|
133
|
+
"cast_id": 18,
|
|
134
|
+
"character": "Obi-Wan Kenobi",
|
|
135
|
+
"credit_id": "52fe431ec3a36847f803bb99",
|
|
136
|
+
"gender": 2,
|
|
137
|
+
"id": 12248,
|
|
138
|
+
"known_for_department": "Acting",
|
|
139
|
+
"name": "Alec Guinness",
|
|
140
|
+
"order": 9,
|
|
141
|
+
"original_name": "Alec Guinness",
|
|
142
|
+
"popularity": 2.968,
|
|
143
|
+
"profile_path": "/gplGgl6XERpvYdluiwY8GlxSdpi.jpg",
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"adult": false,
|
|
147
|
+
"cast_id": 19,
|
|
148
|
+
"character": "Boba Fett",
|
|
149
|
+
"credit_id": "52fe431ec3a36847f803bb9d",
|
|
150
|
+
"gender": 2,
|
|
151
|
+
"id": 33185,
|
|
152
|
+
"known_for_department": "Acting",
|
|
153
|
+
"name": "Jeremy Bulloch",
|
|
154
|
+
"order": 10,
|
|
155
|
+
"original_name": "Jeremy Bulloch",
|
|
156
|
+
"popularity": 1.96,
|
|
157
|
+
"profile_path": "/sioJ1UcQPgHktGgUXrb5FKBjiYp.jpg",
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"adult": false,
|
|
161
|
+
"cast_id": 108,
|
|
162
|
+
"character": "Boba Fett (voice - uncredited)",
|
|
163
|
+
"credit_id": "56fce710c3a3684812001d1b",
|
|
164
|
+
"gender": 2,
|
|
165
|
+
"id": 151529,
|
|
166
|
+
"known_for_department": "Acting",
|
|
167
|
+
"name": "Jason Wingreen",
|
|
168
|
+
"order": 11,
|
|
169
|
+
"original_name": "Jason Wingreen",
|
|
170
|
+
"popularity": 1.473,
|
|
171
|
+
"profile_path": "/9fQvZAPmOd6p0GGLaP2NIjxWwUq.jpg",
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"adult": false,
|
|
175
|
+
"cast_id": 20,
|
|
176
|
+
"character": "Lando's Aide",
|
|
177
|
+
"credit_id": "52fe431ec3a36847f803bba1",
|
|
178
|
+
"gender": 2,
|
|
179
|
+
"id": 27165,
|
|
180
|
+
"known_for_department": "Acting",
|
|
181
|
+
"name": "John Hollis",
|
|
182
|
+
"order": 12,
|
|
183
|
+
"original_name": "John Hollis",
|
|
184
|
+
"popularity": 1.02,
|
|
185
|
+
"profile_path": "/6PKo9EBcT96t2aHcpKJ0epwipp6.jpg",
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"adult": false,
|
|
189
|
+
"cast_id": 21,
|
|
190
|
+
"character": "Chief Ugnaught",
|
|
191
|
+
"credit_id": "52fe431ec3a36847f803bba5",
|
|
192
|
+
"gender": 2,
|
|
193
|
+
"id": 132538,
|
|
194
|
+
"known_for_department": "Acting",
|
|
195
|
+
"name": "Jack Purvis",
|
|
196
|
+
"order": 13,
|
|
197
|
+
"original_name": "Jack Purvis",
|
|
198
|
+
"popularity": 0.829,
|
|
199
|
+
"profile_path": "/mElieLKynpuzRkt8kwovTdL6Mh.jpg",
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"adult": false,
|
|
203
|
+
"cast_id": 22,
|
|
204
|
+
"character": "Snow Creature",
|
|
205
|
+
"credit_id": "52fe431ec3a36847f803bba9",
|
|
206
|
+
"gender": 0,
|
|
207
|
+
"id": 132539,
|
|
208
|
+
"known_for_department": "Acting",
|
|
209
|
+
"name": "Des Webb",
|
|
210
|
+
"order": 14,
|
|
211
|
+
"original_name": "Des Webb",
|
|
212
|
+
"popularity": 0.6,
|
|
213
|
+
"profile_path": null,
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"adult": false,
|
|
217
|
+
"cast_id": 113,
|
|
218
|
+
"character": "Performing Assistant for Yoda",
|
|
219
|
+
"credit_id": "58657234c3a36852c9020b5e",
|
|
220
|
+
"gender": 1,
|
|
221
|
+
"id": 70772,
|
|
222
|
+
"known_for_department": "Acting",
|
|
223
|
+
"name": "Kathryn Mullen",
|
|
224
|
+
"order": 15,
|
|
225
|
+
"original_name": "Kathryn Mullen",
|
|
226
|
+
"popularity": 1.4,
|
|
227
|
+
"profile_path": "/7uzIB4SwTHkV0V1zbwcsSrH3lsQ.jpg",
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"adult": false,
|
|
231
|
+
"cast_id": 119,
|
|
232
|
+
"character": "Emperor (uncredited)",
|
|
233
|
+
"credit_id": "5865729b9251412b8a020c92",
|
|
234
|
+
"gender": 1,
|
|
235
|
+
"id": 117714,
|
|
236
|
+
"known_for_department": "Acting",
|
|
237
|
+
"name": "Marjorie Eaton",
|
|
238
|
+
"order": 16,
|
|
239
|
+
"original_name": "Marjorie Eaton",
|
|
240
|
+
"popularity": 0.98,
|
|
241
|
+
"profile_path": "/mYbsLyb5xvoXz4HWrhD5Iv6p50d.jpg",
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"adult": false,
|
|
245
|
+
"cast_id": 23,
|
|
246
|
+
"character": "Emperor (voice)",
|
|
247
|
+
"credit_id": "52fe431ec3a36847f803bbad",
|
|
248
|
+
"gender": 2,
|
|
249
|
+
"id": 20128,
|
|
250
|
+
"known_for_department": "Acting",
|
|
251
|
+
"name": "Clive Revill",
|
|
252
|
+
"order": 17,
|
|
253
|
+
"original_name": "Clive Revill",
|
|
254
|
+
"popularity": 2.411,
|
|
255
|
+
"profile_path": "/29CSAUPz4gRFX4ZYFamKbZQwUDj.jpg",
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"adult": false,
|
|
259
|
+
"cast_id": 25,
|
|
260
|
+
"character": "Admiral Piett",
|
|
261
|
+
"credit_id": "52fe431ec3a36847f803bbb5",
|
|
262
|
+
"gender": 2,
|
|
263
|
+
"id": 10734,
|
|
264
|
+
"known_for_department": "Acting",
|
|
265
|
+
"name": "Kenneth Colley",
|
|
266
|
+
"order": 18,
|
|
267
|
+
"original_name": "Kenneth Colley",
|
|
268
|
+
"popularity": 1.96,
|
|
269
|
+
"profile_path": "/2clSIyNhC3Z725cPX1TR8Hsl1hi.jpg",
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"adult": false,
|
|
273
|
+
"cast_id": 24,
|
|
274
|
+
"character": "General Veers",
|
|
275
|
+
"credit_id": "52fe431ec3a36847f803bbb1",
|
|
276
|
+
"gender": 2,
|
|
277
|
+
"id": 740,
|
|
278
|
+
"known_for_department": "Acting",
|
|
279
|
+
"name": "Julian Glover",
|
|
280
|
+
"order": 19,
|
|
281
|
+
"original_name": "Julian Glover",
|
|
282
|
+
"popularity": 1.027,
|
|
283
|
+
"profile_path": "/yqFGLoY6CRy9jGp3NI328VlsaIG.jpg",
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"adult": false,
|
|
287
|
+
"cast_id": 31,
|
|
288
|
+
"character": "Admiral Ozzel",
|
|
289
|
+
"credit_id": "54e6fe74c3a3681fec000bff",
|
|
290
|
+
"gender": 2,
|
|
291
|
+
"id": 70417,
|
|
292
|
+
"known_for_department": "Acting",
|
|
293
|
+
"name": "Michael Sheard",
|
|
294
|
+
"order": 20,
|
|
295
|
+
"original_name": "Michael Sheard",
|
|
296
|
+
"popularity": 1.4,
|
|
297
|
+
"profile_path": "/3Ixa3kEGEVCNumIMcLjq5VmU65y.jpg",
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"adult": false,
|
|
301
|
+
"cast_id": 32,
|
|
302
|
+
"character": "Captain Needa",
|
|
303
|
+
"credit_id": "54e6ff64c3a3681fec000c1b",
|
|
304
|
+
"gender": 2,
|
|
305
|
+
"id": 47520,
|
|
306
|
+
"known_for_department": "Acting",
|
|
307
|
+
"name": "Michael Culver",
|
|
308
|
+
"order": 21,
|
|
309
|
+
"original_name": "Michael Culver",
|
|
310
|
+
"popularity": 1.234,
|
|
311
|
+
"profile_path": "/t5UhbqU3FrfpXHs7UsHzF17CfTB.jpg",
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"adult": false,
|
|
315
|
+
"cast_id": 33,
|
|
316
|
+
"character": "Captain Lennox",
|
|
317
|
+
"credit_id": "54e9886a925141117c002ec7",
|
|
318
|
+
"gender": 0,
|
|
319
|
+
"id": 1429986,
|
|
320
|
+
"known_for_department": "Acting",
|
|
321
|
+
"name": "John Dicks",
|
|
322
|
+
"order": 22,
|
|
323
|
+
"original_name": "John Dicks",
|
|
324
|
+
"popularity": 0.6,
|
|
325
|
+
"profile_path": null,
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"adult": false,
|
|
329
|
+
"cast_id": 34,
|
|
330
|
+
"character": "Bewil",
|
|
331
|
+
"credit_id": "54e98baac3a36836e000376d",
|
|
332
|
+
"gender": 2,
|
|
333
|
+
"id": 24625,
|
|
334
|
+
"known_for_department": "Acting",
|
|
335
|
+
"name": "Milton Johns",
|
|
336
|
+
"order": 23,
|
|
337
|
+
"original_name": "Milton Johns",
|
|
338
|
+
"popularity": 0.6,
|
|
339
|
+
"profile_path": null,
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"adult": false,
|
|
343
|
+
"cast_id": 35,
|
|
344
|
+
"character": "Commander Nemet",
|
|
345
|
+
"credit_id": "54e98eb8c3a36836ea003893",
|
|
346
|
+
"gender": 2,
|
|
347
|
+
"id": 1229839,
|
|
348
|
+
"known_for_department": "Acting",
|
|
349
|
+
"name": "Mark Jones",
|
|
350
|
+
"order": 24,
|
|
351
|
+
"original_name": "Mark Jones",
|
|
352
|
+
"popularity": 0.98,
|
|
353
|
+
"profile_path": "/x3FLrtc9vJCBr57P2dQiVGuXpAz.jpg",
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"adult": false,
|
|
357
|
+
"cast_id": 36,
|
|
358
|
+
"character": "Cabbel",
|
|
359
|
+
"credit_id": "54e99076c3a3684ea6002c94",
|
|
360
|
+
"gender": 2,
|
|
361
|
+
"id": 1221792,
|
|
362
|
+
"known_for_department": "Acting",
|
|
363
|
+
"name": "Oliver Maguire",
|
|
364
|
+
"order": 25,
|
|
365
|
+
"original_name": "Oliver Maguire",
|
|
366
|
+
"popularity": 1.96,
|
|
367
|
+
"profile_path": "/dL2qa1C2VRy83hrmy4yxYOuVvWu.jpg",
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"adult": false,
|
|
371
|
+
"cast_id": 37,
|
|
372
|
+
"character": "Lieutenant Venka",
|
|
373
|
+
"credit_id": "54e99169c3a36836ea0038d9",
|
|
374
|
+
"gender": 2,
|
|
375
|
+
"id": 1429987,
|
|
376
|
+
"known_for_department": "Acting",
|
|
377
|
+
"name": "Robin Scobey",
|
|
378
|
+
"order": 26,
|
|
379
|
+
"original_name": "Robin Scobey",
|
|
380
|
+
"popularity": 0.6,
|
|
381
|
+
"profile_path": null,
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"adult": false,
|
|
385
|
+
"cast_id": 38,
|
|
386
|
+
"character": "General Carlist Rieekan",
|
|
387
|
+
"credit_id": "54e9930dc3a36836d9003564",
|
|
388
|
+
"gender": 2,
|
|
389
|
+
"id": 8664,
|
|
390
|
+
"known_for_department": "Acting",
|
|
391
|
+
"name": "Bruce Boa",
|
|
392
|
+
"order": 27,
|
|
393
|
+
"original_name": "Bruce Boa",
|
|
394
|
+
"popularity": 0.6,
|
|
395
|
+
"profile_path": "/krI6JJf0w2naHn4sbvqOwj0a0ny.jpg",
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"adult": false,
|
|
399
|
+
"cast_id": 39,
|
|
400
|
+
"character": "Zev Senesca",
|
|
401
|
+
"credit_id": "54e9945d9251412eae0038c4",
|
|
402
|
+
"gender": 2,
|
|
403
|
+
"id": 47808,
|
|
404
|
+
"known_for_department": "Acting",
|
|
405
|
+
"name": "Christopher Malcolm",
|
|
406
|
+
"order": 28,
|
|
407
|
+
"original_name": "Christopher Malcolm",
|
|
408
|
+
"popularity": 1.663,
|
|
409
|
+
"profile_path": "/vzvrOWPFIXUTc8jxQIpykdjK630.jpg",
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"adult": false,
|
|
413
|
+
"cast_id": 40,
|
|
414
|
+
"character": "Wedge Antilles",
|
|
415
|
+
"credit_id": "54e994e49251412ebd00379d",
|
|
416
|
+
"gender": 2,
|
|
417
|
+
"id": 47698,
|
|
418
|
+
"known_for_department": "Acting",
|
|
419
|
+
"name": "Denis Lawson",
|
|
420
|
+
"order": 29,
|
|
421
|
+
"original_name": "Denis Lawson",
|
|
422
|
+
"popularity": 1.574,
|
|
423
|
+
"profile_path": "/31CpvrSXT5UQv2LjW6T1fBTLrN5.jpg",
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"adult": false,
|
|
427
|
+
"cast_id": 45,
|
|
428
|
+
"character": "Derek "Hobbie" Klivian",
|
|
429
|
+
"credit_id": "54e99c2fc3a36836ed003b0b",
|
|
430
|
+
"gender": 0,
|
|
431
|
+
"id": 1181937,
|
|
432
|
+
"known_for_department": "Acting",
|
|
433
|
+
"name": "Richard Oldfield",
|
|
434
|
+
"order": 30,
|
|
435
|
+
"original_name": "Richard Oldfield",
|
|
436
|
+
"popularity": 1.38,
|
|
437
|
+
"profile_path": "/pMrqT25xnl8NZowRNKisCHqB6mJ.jpg",
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"adult": false,
|
|
441
|
+
"cast_id": 44,
|
|
442
|
+
"character": "Dak Ralter",
|
|
443
|
+
"credit_id": "54e99c24925141117c003066",
|
|
444
|
+
"gender": 2,
|
|
445
|
+
"id": 1430007,
|
|
446
|
+
"known_for_department": "Acting",
|
|
447
|
+
"name": "John Morton",
|
|
448
|
+
"order": 31,
|
|
449
|
+
"original_name": "John Morton",
|
|
450
|
+
"popularity": 0.6,
|
|
451
|
+
"profile_path": "/dIm3kjbVzhqd8Xog3UWv7HRtCyU.jpg",
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"adult": false,
|
|
455
|
+
"cast_id": 43,
|
|
456
|
+
"character": "Wes Janson",
|
|
457
|
+
"credit_id": "54e99c159251412eb10038c0",
|
|
458
|
+
"gender": 2,
|
|
459
|
+
"id": 79957,
|
|
460
|
+
"known_for_department": "Acting",
|
|
461
|
+
"name": "Ian Liston",
|
|
462
|
+
"order": 32,
|
|
463
|
+
"original_name": "Ian Liston",
|
|
464
|
+
"popularity": 0.6,
|
|
465
|
+
"profile_path": null,
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"adult": false,
|
|
469
|
+
"cast_id": 28,
|
|
470
|
+
"character": "Major Derlin",
|
|
471
|
+
"credit_id": "52fe431ec3a36847f803bbbf",
|
|
472
|
+
"gender": 2,
|
|
473
|
+
"id": 7907,
|
|
474
|
+
"known_for_department": "Acting",
|
|
475
|
+
"name": "John Ratzenberger",
|
|
476
|
+
"order": 33,
|
|
477
|
+
"original_name": "John Ratzenberger",
|
|
478
|
+
"popularity": 4.177,
|
|
479
|
+
"profile_path": "/e5aNU09v1q6WYTx9pNzC7yjSpve.jpg",
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"adult": false,
|
|
483
|
+
"cast_id": 46,
|
|
484
|
+
"character": "Cal Alder",
|
|
485
|
+
"credit_id": "54e99f4fc3a36836dc00390c",
|
|
486
|
+
"gender": 2,
|
|
487
|
+
"id": 1211845,
|
|
488
|
+
"known_for_department": "Acting",
|
|
489
|
+
"name": "Jack McKenzie",
|
|
490
|
+
"order": 34,
|
|
491
|
+
"original_name": "Jack McKenzie",
|
|
492
|
+
"popularity": 0.6,
|
|
493
|
+
"profile_path": null,
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"adult": false,
|
|
497
|
+
"cast_id": 47,
|
|
498
|
+
"character": "Rebel Force Head Controller",
|
|
499
|
+
"credit_id": "54e9a042c3a36836d900369f",
|
|
500
|
+
"gender": 0,
|
|
501
|
+
"id": 1270880,
|
|
502
|
+
"known_for_department": "Acting",
|
|
503
|
+
"name": "Jerry Harte",
|
|
504
|
+
"order": 35,
|
|
505
|
+
"original_name": "Jerry Harte",
|
|
506
|
+
"popularity": 0.694,
|
|
507
|
+
"profile_path": null,
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"adult": false,
|
|
511
|
+
"cast_id": 48,
|
|
512
|
+
"character": "Tamizander Rey",
|
|
513
|
+
"credit_id": "54e9ae4c9251412eb4003837",
|
|
514
|
+
"gender": 2,
|
|
515
|
+
"id": 116123,
|
|
516
|
+
"known_for_department": "Acting",
|
|
517
|
+
"name": "Norman Chancer",
|
|
518
|
+
"order": 36,
|
|
519
|
+
"original_name": "Norman Chancer",
|
|
520
|
+
"popularity": 0.994,
|
|
521
|
+
"profile_path": "/xxj8VqbDm4chXUF4A7Z3BnEpOVB.jpg",
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"adult": false,
|
|
525
|
+
"cast_id": 49,
|
|
526
|
+
"character": "Jeroen Webb",
|
|
527
|
+
"credit_id": "54e9afb19251412eb4003852",
|
|
528
|
+
"gender": 2,
|
|
529
|
+
"id": 1430038,
|
|
530
|
+
"known_for_department": "Acting",
|
|
531
|
+
"name": "Norwich Duff",
|
|
532
|
+
"order": 37,
|
|
533
|
+
"original_name": "Norwich Duff",
|
|
534
|
+
"popularity": 0.6,
|
|
535
|
+
"profile_path": "/hqJeonez7jX8oyU4n204TAjQZt4.jpg",
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"adult": false,
|
|
539
|
+
"cast_id": 50,
|
|
540
|
+
"character": "Tigran Jamiro",
|
|
541
|
+
"credit_id": "54e9b13f9251412eb1003ace",
|
|
542
|
+
"gender": 0,
|
|
543
|
+
"id": 1250671,
|
|
544
|
+
"known_for_department": "Acting",
|
|
545
|
+
"name": "Ray Hassett",
|
|
546
|
+
"order": 38,
|
|
547
|
+
"original_name": "Ray Hassett",
|
|
548
|
+
"popularity": 0.6,
|
|
549
|
+
"profile_path": null,
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"adult": false,
|
|
553
|
+
"cast_id": 51,
|
|
554
|
+
"character": "Toryn Farr",
|
|
555
|
+
"credit_id": "54e9b1cac3a36836e0003aeb",
|
|
556
|
+
"gender": 1,
|
|
557
|
+
"id": 1430048,
|
|
558
|
+
"known_for_department": "Acting",
|
|
559
|
+
"name": "Brigitte Kahn",
|
|
560
|
+
"order": 39,
|
|
561
|
+
"original_name": "Brigitte Kahn",
|
|
562
|
+
"popularity": 1.225,
|
|
563
|
+
"profile_path": null,
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"adult": false,
|
|
567
|
+
"cast_id": 52,
|
|
568
|
+
"character": "Wyron Serper",
|
|
569
|
+
"credit_id": "54e9b3bf925141117c0032e8",
|
|
570
|
+
"gender": 2,
|
|
571
|
+
"id": 184980,
|
|
572
|
+
"known_for_department": "Acting",
|
|
573
|
+
"name": "Burnell Tucker",
|
|
574
|
+
"order": 40,
|
|
575
|
+
"original_name": "Burnell Tucker",
|
|
576
|
+
"popularity": 0.6,
|
|
577
|
+
"profile_path": "/kSMCUUbt6pplhEKSR3uX8rJDXOy.jpg",
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"adult": false,
|
|
581
|
+
"cast_id": 68,
|
|
582
|
+
"character": "Imperial Officer (uncredited)",
|
|
583
|
+
"credit_id": "56b2bbeac3a36806ec00071e",
|
|
584
|
+
"gender": 2,
|
|
585
|
+
"id": 202711,
|
|
586
|
+
"known_for_department": "Acting",
|
|
587
|
+
"name": "Bob Anderson",
|
|
588
|
+
"order": 42,
|
|
589
|
+
"original_name": "Bob Anderson",
|
|
590
|
+
"popularity": 0.608,
|
|
591
|
+
"profile_path": "/67IDY3Jz1Oiu97DYokoQB46tL7x.jpg",
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"adult": false,
|
|
595
|
+
"cast_id": 70,
|
|
596
|
+
"character": "Stormtrooper (uncredited)",
|
|
597
|
+
"credit_id": "56b385d09251415320000ce9",
|
|
598
|
+
"gender": 2,
|
|
599
|
+
"id": 1271059,
|
|
600
|
+
"known_for_department": "Crew",
|
|
601
|
+
"name": "Lightning Bear",
|
|
602
|
+
"order": 43,
|
|
603
|
+
"original_name": "Lightning Bear",
|
|
604
|
+
"popularity": 0.6,
|
|
605
|
+
"profile_path": "/2QleSOdmvlByiYU8fiOPkFVDnPt.jpg",
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"adult": false,
|
|
609
|
+
"cast_id": 72,
|
|
610
|
+
"character": "Stormtrooper / Snowtrooper / Rebel Soldier / ... (uncredited)",
|
|
611
|
+
"credit_id": "56b3867d92514114d7002414",
|
|
612
|
+
"gender": 0,
|
|
613
|
+
"id": 1473717,
|
|
614
|
+
"known_for_department": "Acting",
|
|
615
|
+
"name": "Richard Bonehill",
|
|
616
|
+
"order": 44,
|
|
617
|
+
"original_name": "Richard Bonehill",
|
|
618
|
+
"popularity": 0.6,
|
|
619
|
+
"profile_path": "/8vy6zkI2JM8qyxMetFnVHP0Mv4J.jpg",
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"adult": false,
|
|
623
|
+
"cast_id": 73,
|
|
624
|
+
"character": "Holographic Imperial Officer (uncredited)",
|
|
625
|
+
"credit_id": "56b386ce92514112b900138d",
|
|
626
|
+
"gender": 2,
|
|
627
|
+
"id": 1230632,
|
|
628
|
+
"known_for_department": "Acting",
|
|
629
|
+
"name": "John Cannon",
|
|
630
|
+
"order": 45,
|
|
631
|
+
"original_name": "John Cannon",
|
|
632
|
+
"popularity": 0.6,
|
|
633
|
+
"profile_path": null,
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"adult": false,
|
|
637
|
+
"cast_id": 74,
|
|
638
|
+
"character": "Officer M'kae (Captain Needa's Communications Officer) (uncredited)",
|
|
639
|
+
"credit_id": "56b386fe92514114e1002346",
|
|
640
|
+
"gender": 2,
|
|
641
|
+
"id": 1520024,
|
|
642
|
+
"known_for_department": "Acting",
|
|
643
|
+
"name": "Mark Capri",
|
|
644
|
+
"order": 46,
|
|
645
|
+
"original_name": "Mark Capri",
|
|
646
|
+
"popularity": 0.6,
|
|
647
|
+
"profile_path": "/ymUufTw5v801anQ7HxE9c1Q7bi1.jpg",
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"adult": false,
|
|
651
|
+
"cast_id": 76,
|
|
652
|
+
"character": "Cloud City Guard (uncredited)",
|
|
653
|
+
"credit_id": "56b3878cc3a36806ec0024a6",
|
|
654
|
+
"gender": 0,
|
|
655
|
+
"id": 1355100,
|
|
656
|
+
"known_for_department": "Acting",
|
|
657
|
+
"name": "Martin Dew",
|
|
658
|
+
"order": 47,
|
|
659
|
+
"original_name": "Martin Dew",
|
|
660
|
+
"popularity": 0.6,
|
|
661
|
+
"profile_path": "/7NqJ8j5PUUOR4CQ02VgiSjoqifI.jpg",
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"adult": false,
|
|
665
|
+
"cast_id": 77,
|
|
666
|
+
"character": "Snowtrooper Gunner (uncredited)",
|
|
667
|
+
"credit_id": "56b387d092514114d9002267",
|
|
668
|
+
"gender": 2,
|
|
669
|
+
"id": 53587,
|
|
670
|
+
"known_for_department": "Acting",
|
|
671
|
+
"name": "Peter Diamond",
|
|
672
|
+
"order": 48,
|
|
673
|
+
"original_name": "Peter Diamond",
|
|
674
|
+
"popularity": 0.6,
|
|
675
|
+
"profile_path": "/nVb4nFvWloTdzopD42aNV5osYKU.jpg",
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"adult": false,
|
|
679
|
+
"cast_id": 79,
|
|
680
|
+
"character": "Snowtrooper (uncredited)",
|
|
681
|
+
"credit_id": "56b3884992514114eb0021f5",
|
|
682
|
+
"gender": 2,
|
|
683
|
+
"id": 1212168,
|
|
684
|
+
"known_for_department": "Acting",
|
|
685
|
+
"name": "Stuart Fell",
|
|
686
|
+
"order": 49,
|
|
687
|
+
"original_name": "Stuart Fell",
|
|
688
|
+
"popularity": 0.98,
|
|
689
|
+
"profile_path": null,
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"adult": false,
|
|
693
|
+
"cast_id": 81,
|
|
694
|
+
"character": "Snowtrooper (uncredited)",
|
|
695
|
+
"credit_id": "56b38952c3a36806e600235d",
|
|
696
|
+
"gender": 2,
|
|
697
|
+
"id": 1572549,
|
|
698
|
+
"known_for_department": "Crew",
|
|
699
|
+
"name": "Doug Robinson",
|
|
700
|
+
"order": 50,
|
|
701
|
+
"original_name": "Doug Robinson",
|
|
702
|
+
"popularity": 0.6,
|
|
703
|
+
"profile_path": "/x00pKaNe6SFfbP8K3YHnPjzBBq0.jpg",
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"adult": false,
|
|
707
|
+
"cast_id": 83,
|
|
708
|
+
"character": "Snowtrooper (uncredited)",
|
|
709
|
+
"credit_id": "56b389b292514114d900229c",
|
|
710
|
+
"gender": 2,
|
|
711
|
+
"id": 2175140,
|
|
712
|
+
"known_for_department": "Crew",
|
|
713
|
+
"name": "Tony Smart",
|
|
714
|
+
"order": 51,
|
|
715
|
+
"original_name": "Tony Smart",
|
|
716
|
+
"popularity": 1.38,
|
|
717
|
+
"profile_path": null,
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"adult": false,
|
|
721
|
+
"cast_id": 85,
|
|
722
|
+
"character": "Bossk / Bespin Security Guard (uncredited)",
|
|
723
|
+
"credit_id": "56b38a25c3a36806ec002523",
|
|
724
|
+
"gender": 2,
|
|
725
|
+
"id": 964699,
|
|
726
|
+
"known_for_department": "Crew",
|
|
727
|
+
"name": "Alan Harris",
|
|
728
|
+
"order": 52,
|
|
729
|
+
"original_name": "Alan Harris",
|
|
730
|
+
"popularity": 0.6,
|
|
731
|
+
"profile_path": "/nc83B1SJ7xVJjx8Op7HolOM70uc.jpg",
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"adult": false,
|
|
735
|
+
"cast_id": 15,
|
|
736
|
+
"character": "Darth Vader (voice) (uncredited)",
|
|
737
|
+
"credit_id": "52fe431ec3a36847f803bb8d",
|
|
738
|
+
"gender": 2,
|
|
739
|
+
"id": 15152,
|
|
740
|
+
"known_for_department": "Acting",
|
|
741
|
+
"name": "James Earl Jones",
|
|
742
|
+
"order": 53,
|
|
743
|
+
"original_name": "James Earl Jones",
|
|
744
|
+
"popularity": 5.803,
|
|
745
|
+
"profile_path": "/oqMPIsXrl9SZkRfIKN08eFROmH6.jpg",
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"adult": false,
|
|
749
|
+
"cast_id": 88,
|
|
750
|
+
"character": "Rebel Pilot (uncredited)",
|
|
751
|
+
"credit_id": "56b38b0392514114e10023dc",
|
|
752
|
+
"gender": 2,
|
|
753
|
+
"id": 33403,
|
|
754
|
+
"known_for_department": "Acting",
|
|
755
|
+
"name": "Mac McDonald",
|
|
756
|
+
"order": 55,
|
|
757
|
+
"original_name": "Mac McDonald",
|
|
758
|
+
"popularity": 0.84,
|
|
759
|
+
"profile_path": "/gejehuptBzsJlPiWKU8B9TTrc7r.jpg",
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"adult": false,
|
|
763
|
+
"cast_id": 89,
|
|
764
|
+
"character": "General McQuarrie (uncredited)",
|
|
765
|
+
"credit_id": "56b38b6ac3a36806ee00247b",
|
|
766
|
+
"gender": 0,
|
|
767
|
+
"id": 1572550,
|
|
768
|
+
"known_for_department": "Acting",
|
|
769
|
+
"name": "Ralph McQuarrie",
|
|
770
|
+
"order": 56,
|
|
771
|
+
"original_name": "Ralph McQuarrie",
|
|
772
|
+
"popularity": 1.4,
|
|
773
|
+
"profile_path": "/co1vBL2JmWubBWHvFPQz8ld18aA.jpg",
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"adult": false,
|
|
777
|
+
"cast_id": 91,
|
|
778
|
+
"character": "Stormtrooper / Imperial Comms Officer / Rebel Soldier (uncredited)",
|
|
779
|
+
"credit_id": "56b38c63c3a36806f1002169",
|
|
780
|
+
"gender": 0,
|
|
781
|
+
"id": 1230662,
|
|
782
|
+
"known_for_department": "Acting",
|
|
783
|
+
"name": "Ralph Morse",
|
|
784
|
+
"order": 57,
|
|
785
|
+
"original_name": "Ralph Morse",
|
|
786
|
+
"popularity": 0.6,
|
|
787
|
+
"profile_path": null,
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"adult": false,
|
|
791
|
+
"cast_id": 92,
|
|
792
|
+
"character": "Wampa (uncredited)",
|
|
793
|
+
"credit_id": "56b38cce92514114d9002313",
|
|
794
|
+
"gender": 2,
|
|
795
|
+
"id": 1229106,
|
|
796
|
+
"known_for_department": "Acting",
|
|
797
|
+
"name": "Terry Richards",
|
|
798
|
+
"order": 58,
|
|
799
|
+
"original_name": "Terry Richards",
|
|
800
|
+
"popularity": 0.6,
|
|
801
|
+
"profile_path": "/o1cl5FJBW8Q06nFIWvobUIWQ1jR.jpg",
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"adult": false,
|
|
805
|
+
"cast_id": 95,
|
|
806
|
+
"character": "Echo Base Trooper (uncredited)",
|
|
807
|
+
"credit_id": "56b38e1a92514114e1002457",
|
|
808
|
+
"gender": 2,
|
|
809
|
+
"id": 4515,
|
|
810
|
+
"known_for_department": "Acting",
|
|
811
|
+
"name": "Treat Williams",
|
|
812
|
+
"order": 60,
|
|
813
|
+
"original_name": "Treat Williams",
|
|
814
|
+
"popularity": 3.513,
|
|
815
|
+
"profile_path": "/jbRMOU2K7ePg7Zs59nfgEYLeD1e.jpg",
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"adult": false,
|
|
819
|
+
"cast_id": 112,
|
|
820
|
+
"character": "Hoth Rebel Commander (uncredited)",
|
|
821
|
+
"credit_id": "57f557bfc3a36831c3000adf",
|
|
822
|
+
"gender": 2,
|
|
823
|
+
"id": 185986,
|
|
824
|
+
"known_for_department": "Acting",
|
|
825
|
+
"name": "Shaun Curry",
|
|
826
|
+
"order": 61,
|
|
827
|
+
"original_name": "Shaun Curry",
|
|
828
|
+
"popularity": 0.982,
|
|
829
|
+
"profile_path": null,
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"adult": false,
|
|
833
|
+
"cast_id": 121,
|
|
834
|
+
"character": "Stormtrooper/Snowtrooper",
|
|
835
|
+
"credit_id": "586572f1c3a36852e0022d93",
|
|
836
|
+
"gender": 0,
|
|
837
|
+
"id": 1729657,
|
|
838
|
+
"known_for_department": "Acting",
|
|
839
|
+
"name": "Alan Austen",
|
|
840
|
+
"order": 62,
|
|
841
|
+
"original_name": "Alan Austen",
|
|
842
|
+
"popularity": 0.6,
|
|
843
|
+
"profile_path": "/6iN4XuzLqt7WPthXWMpFhFQhWWP.jpg",
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"adult": false,
|
|
847
|
+
"cast_id": 122,
|
|
848
|
+
"character": "Stormtrooper/Snowtrooper",
|
|
849
|
+
"credit_id": "586572f99251412b8d021349",
|
|
850
|
+
"gender": 2,
|
|
851
|
+
"id": 1415957,
|
|
852
|
+
"known_for_department": "Crew",
|
|
853
|
+
"name": "Jim Dowdall",
|
|
854
|
+
"order": 63,
|
|
855
|
+
"original_name": "Jim Dowdall",
|
|
856
|
+
"popularity": 0.982,
|
|
857
|
+
"profile_path": null,
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"adult": false,
|
|
861
|
+
"cast_id": 124,
|
|
862
|
+
"character": "Hoth Trooper (uncredited)",
|
|
863
|
+
"credit_id": "58657312c3a36852cc0202ac",
|
|
864
|
+
"gender": 0,
|
|
865
|
+
"id": 107700,
|
|
866
|
+
"known_for_department": "Writing",
|
|
867
|
+
"name": "Tom Egeland",
|
|
868
|
+
"order": 65,
|
|
869
|
+
"original_name": "Tom Egeland",
|
|
870
|
+
"popularity": 0.6,
|
|
871
|
+
"profile_path": null,
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"adult": false,
|
|
875
|
+
"cast_id": 125,
|
|
876
|
+
"character": "Stormtrooper (uncredited)",
|
|
877
|
+
"credit_id": "586573219251413cd601d2f4",
|
|
878
|
+
"gender": 2,
|
|
879
|
+
"id": 1424954,
|
|
880
|
+
"known_for_department": "Costume & Make-Up",
|
|
881
|
+
"name": "Alan Flyng",
|
|
882
|
+
"order": 66,
|
|
883
|
+
"original_name": "Alan Flyng",
|
|
884
|
+
"popularity": 0.6,
|
|
885
|
+
"profile_path": null,
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"adult": false,
|
|
889
|
+
"cast_id": 127,
|
|
890
|
+
"character": "Imperial Officer / Stormtrooper (uncredited)",
|
|
891
|
+
"credit_id": "586573539251412b8a020ceb",
|
|
892
|
+
"gender": 2,
|
|
893
|
+
"id": 1729660,
|
|
894
|
+
"known_for_department": "Crew",
|
|
895
|
+
"name": "Trevor Butterfield",
|
|
896
|
+
"order": 67,
|
|
897
|
+
"original_name": "Trevor Butterfield",
|
|
898
|
+
"popularity": 0.6,
|
|
899
|
+
"profile_path": null,
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"adult": false,
|
|
903
|
+
"cast_id": 171,
|
|
904
|
+
"character": "Female Hoth Control Room Tech (uncredited)",
|
|
905
|
+
"credit_id": "5ec53295140bad001c164a9f",
|
|
906
|
+
"gender": 1,
|
|
907
|
+
"id": 2088545,
|
|
908
|
+
"known_for_department": "Acting",
|
|
909
|
+
"name": "Mercedes Burleigh",
|
|
910
|
+
"order": 68,
|
|
911
|
+
"original_name": "Mercedes Burleigh",
|
|
912
|
+
"popularity": 0.6,
|
|
913
|
+
"profile_path": null,
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"adult": false,
|
|
917
|
+
"cast_id": 172,
|
|
918
|
+
"character": "Ugnaught (uncredited)",
|
|
919
|
+
"credit_id": "5ec532a0e635710022cc1c8e",
|
|
920
|
+
"gender": 0,
|
|
921
|
+
"id": 1430217,
|
|
922
|
+
"known_for_department": "Acting",
|
|
923
|
+
"name": "Jane Busby",
|
|
924
|
+
"order": 69,
|
|
925
|
+
"original_name": "Jane Busby",
|
|
926
|
+
"popularity": 0.6,
|
|
927
|
+
"profile_path": null,
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"adult": false,
|
|
931
|
+
"cast_id": 173,
|
|
932
|
+
"character": "Dengar (uncredited)",
|
|
933
|
+
"credit_id": "5ec532accb75d1002227ec5c",
|
|
934
|
+
"gender": 2,
|
|
935
|
+
"id": 1220323,
|
|
936
|
+
"known_for_department": "Acting",
|
|
937
|
+
"name": "Maurice Bush",
|
|
938
|
+
"order": 70,
|
|
939
|
+
"original_name": "Maurice Bush",
|
|
940
|
+
"popularity": 0.6,
|
|
941
|
+
"profile_path": null,
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"adult": false,
|
|
945
|
+
"cast_id": 174,
|
|
946
|
+
"character": "Storm Trooper (uncredited)",
|
|
947
|
+
"credit_id": "5ec532c2d2147c0022b7f3f3",
|
|
948
|
+
"gender": 2,
|
|
949
|
+
"id": 151961,
|
|
950
|
+
"known_for_department": "Acting",
|
|
951
|
+
"name": "Tony Clarkin",
|
|
952
|
+
"order": 71,
|
|
953
|
+
"original_name": "Tony Clarkin",
|
|
954
|
+
"popularity": 1.38,
|
|
955
|
+
"profile_path": "/aKlsJqkhfFp8TN9eZn4jHxj6seH.jpg",
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"adult": false,
|
|
959
|
+
"cast_id": 175,
|
|
960
|
+
"character": "Ugnaught (uncredited)",
|
|
961
|
+
"credit_id": "5ec532dd9979d20021368933",
|
|
962
|
+
"gender": 2,
|
|
963
|
+
"id": 219382,
|
|
964
|
+
"known_for_department": "Acting",
|
|
965
|
+
"name": "Mike Edmonds",
|
|
966
|
+
"order": 72,
|
|
967
|
+
"original_name": "Mike Edmonds",
|
|
968
|
+
"popularity": 1.095,
|
|
969
|
+
"profile_path": "/vLOB9mTZ15CS0oTgEteTEio8RC2.jpg",
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"adult": false,
|
|
973
|
+
"cast_id": 180,
|
|
974
|
+
"character": "Rebel Technician on Hoth (uncredited)",
|
|
975
|
+
"credit_id": "5ec5331ae635710022cc1d53",
|
|
976
|
+
"gender": 2,
|
|
977
|
+
"id": 1406400,
|
|
978
|
+
"known_for_department": "Acting",
|
|
979
|
+
"name": "Walter Henry",
|
|
980
|
+
"order": 73,
|
|
981
|
+
"original_name": "Walter Henry",
|
|
982
|
+
"popularity": 0.6,
|
|
983
|
+
"profile_path": null,
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"adult": false,
|
|
987
|
+
"cast_id": 182,
|
|
988
|
+
"character": "AT-AT Driver (uncredited)",
|
|
989
|
+
"credit_id": "5ec53332d2147c0023bbf0d4",
|
|
990
|
+
"gender": 2,
|
|
991
|
+
"id": 1230439,
|
|
992
|
+
"known_for_department": "Acting",
|
|
993
|
+
"name": "Paul Jerricho",
|
|
994
|
+
"order": 74,
|
|
995
|
+
"original_name": "Paul Jerricho",
|
|
996
|
+
"popularity": 0.6,
|
|
997
|
+
"profile_path": null,
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"adult": false,
|
|
1001
|
+
"cast_id": 183,
|
|
1002
|
+
"character": "Captain Shawn Valdez - Hoth Rebel (uncredited)",
|
|
1003
|
+
"credit_id": "5ec5333f9979d2001f330c9f",
|
|
1004
|
+
"gender": 2,
|
|
1005
|
+
"id": 4945,
|
|
1006
|
+
"known_for_department": "Directing",
|
|
1007
|
+
"name": "Joe Johnston",
|
|
1008
|
+
"order": 75,
|
|
1009
|
+
"original_name": "Joe Johnston",
|
|
1010
|
+
"popularity": 2.345,
|
|
1011
|
+
"profile_path": "/fbGZo6CG9Z9zKFh8D5wHunyu7gJ.jpg",
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"adult": false,
|
|
1015
|
+
"cast_id": 186,
|
|
1016
|
+
"character": "Stormtrooper / Chewbacca / Treva Horme / Solomahal (uncredited)",
|
|
1017
|
+
"credit_id": "5ec5336f3d3557001eec6ed1",
|
|
1018
|
+
"gender": 0,
|
|
1019
|
+
"id": 2250902,
|
|
1020
|
+
"known_for_department": "Acting",
|
|
1021
|
+
"name": "Steven Meek",
|
|
1022
|
+
"order": 76,
|
|
1023
|
+
"original_name": "Steven Meek",
|
|
1024
|
+
"popularity": 0.6,
|
|
1025
|
+
"profile_path": "/4BD3f7r6vWLFlgIj0Lcr4gsvLYp.jpg",
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"adult": false,
|
|
1029
|
+
"cast_id": 193,
|
|
1030
|
+
"character": "Snowtrooper (uncredited)",
|
|
1031
|
+
"credit_id": "5ec533c7e635710020cb8e64",
|
|
1032
|
+
"gender": 2,
|
|
1033
|
+
"id": 3307,
|
|
1034
|
+
"known_for_department": "Acting",
|
|
1035
|
+
"name": "Peter Roy",
|
|
1036
|
+
"order": 77,
|
|
1037
|
+
"original_name": "Peter Roy",
|
|
1038
|
+
"popularity": 0.6,
|
|
1039
|
+
"profile_path": null,
|
|
1040
|
+
},
|
|
1041
|
+
]
|
|
1042
|
+
`;
|
|
1043
|
+
|
|
1044
|
+
exports[`resolveMovieCredits > when fieldName is crew should return the correct response 1`] = `
|
|
1045
|
+
[
|
|
1046
|
+
{
|
|
1047
|
+
"adult": false,
|
|
1048
|
+
"credit_id": "52fe431ec3a36847f803bbcb",
|
|
1049
|
+
"department": "Production",
|
|
1050
|
+
"gender": 2,
|
|
1051
|
+
"id": 1,
|
|
1052
|
+
"job": "Executive Producer",
|
|
1053
|
+
"known_for_department": "Directing",
|
|
1054
|
+
"name": "George Lucas",
|
|
1055
|
+
"original_name": "George Lucas",
|
|
1056
|
+
"popularity": 5.709,
|
|
1057
|
+
"profile_path": "/WCSZzWdtPmdRxH9LUCVi2JPCSJ.jpg",
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"adult": false,
|
|
1061
|
+
"credit_id": "52fe431ec3a36847f803bbc5",
|
|
1062
|
+
"department": "Writing",
|
|
1063
|
+
"gender": 2,
|
|
1064
|
+
"id": 1,
|
|
1065
|
+
"job": "Story",
|
|
1066
|
+
"known_for_department": "Directing",
|
|
1067
|
+
"name": "George Lucas",
|
|
1068
|
+
"original_name": "George Lucas",
|
|
1069
|
+
"popularity": 5.709,
|
|
1070
|
+
"profile_path": "/WCSZzWdtPmdRxH9LUCVi2JPCSJ.jpg",
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"adult": false,
|
|
1074
|
+
"credit_id": "52fe431ec3a36847f803bb5b",
|
|
1075
|
+
"department": "Production",
|
|
1076
|
+
"gender": 2,
|
|
1077
|
+
"id": 12401,
|
|
1078
|
+
"job": "Producer",
|
|
1079
|
+
"known_for_department": "Acting",
|
|
1080
|
+
"name": "Gary Kurtz",
|
|
1081
|
+
"original_name": "Gary Kurtz",
|
|
1082
|
+
"popularity": 1.219,
|
|
1083
|
+
"profile_path": "/q6tgPiNqzEOIYmHxMrpWoUirmmu.jpg",
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"adult": false,
|
|
1087
|
+
"credit_id": "5ec505d53d3557001de2fcb7",
|
|
1088
|
+
"department": "Production",
|
|
1089
|
+
"gender": 2,
|
|
1090
|
+
"id": 19801,
|
|
1091
|
+
"job": "Producer",
|
|
1092
|
+
"known_for_department": "Production",
|
|
1093
|
+
"name": "Rick McCallum",
|
|
1094
|
+
"original_name": "Rick McCallum",
|
|
1095
|
+
"popularity": 0.98,
|
|
1096
|
+
"profile_path": "/4no2HrRZXX7kiAXEmiTKEzLKAJM.jpg",
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"adult": false,
|
|
1100
|
+
"credit_id": "52fe431ec3a36847f803bb89",
|
|
1101
|
+
"department": "Sound",
|
|
1102
|
+
"gender": 2,
|
|
1103
|
+
"id": 491,
|
|
1104
|
+
"job": "Original Music Composer",
|
|
1105
|
+
"known_for_department": "Sound",
|
|
1106
|
+
"name": "John Williams",
|
|
1107
|
+
"original_name": "John Williams",
|
|
1108
|
+
"popularity": 1.936,
|
|
1109
|
+
"profile_path": "/KFyMqUWeiBdP9tJcZyGWOqnrgK.jpg",
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"adult": false,
|
|
1113
|
+
"credit_id": "566e186c92514150010075c6",
|
|
1114
|
+
"department": "Production",
|
|
1115
|
+
"gender": 0,
|
|
1116
|
+
"id": 8337,
|
|
1117
|
+
"job": "Casting",
|
|
1118
|
+
"known_for_department": "Production",
|
|
1119
|
+
"name": "Terry Liebling",
|
|
1120
|
+
"original_name": "Terry Liebling",
|
|
1121
|
+
"popularity": 0.98,
|
|
1122
|
+
"profile_path": null,
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"adult": false,
|
|
1126
|
+
"credit_id": "566e1a04925141500100762f",
|
|
1127
|
+
"department": "Camera",
|
|
1128
|
+
"gender": 2,
|
|
1129
|
+
"id": 307,
|
|
1130
|
+
"job": "Director of Photography",
|
|
1131
|
+
"known_for_department": "Camera",
|
|
1132
|
+
"name": "Peter Suschitzky",
|
|
1133
|
+
"original_name": "Peter Suschitzky",
|
|
1134
|
+
"popularity": 1.38,
|
|
1135
|
+
"profile_path": "/luMSBjy5mBakdKISk4GI9GrxBT2.jpg",
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"adult": false,
|
|
1139
|
+
"credit_id": "566e185392514150010075b8",
|
|
1140
|
+
"department": "Production",
|
|
1141
|
+
"gender": 1,
|
|
1142
|
+
"id": 390,
|
|
1143
|
+
"job": "Casting",
|
|
1144
|
+
"known_for_department": "Production",
|
|
1145
|
+
"name": "Irene Lamb",
|
|
1146
|
+
"original_name": "Irene Lamb",
|
|
1147
|
+
"popularity": 0.6,
|
|
1148
|
+
"profile_path": null,
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"adult": false,
|
|
1152
|
+
"credit_id": "56b38f2592514114d900237b",
|
|
1153
|
+
"department": "Production",
|
|
1154
|
+
"gender": 2,
|
|
1155
|
+
"id": 665,
|
|
1156
|
+
"job": "Producer",
|
|
1157
|
+
"known_for_department": "Production",
|
|
1158
|
+
"name": "Howard G. Kazanjian",
|
|
1159
|
+
"original_name": "Howard G. Kazanjian",
|
|
1160
|
+
"popularity": 0.6,
|
|
1161
|
+
"profile_path": null,
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"adult": false,
|
|
1165
|
+
"credit_id": "566e1875c3a3682e9800c9e2",
|
|
1166
|
+
"department": "Art",
|
|
1167
|
+
"gender": 2,
|
|
1168
|
+
"id": 669,
|
|
1169
|
+
"job": "Production Design",
|
|
1170
|
+
"known_for_department": "Art",
|
|
1171
|
+
"name": "Norman Reynolds",
|
|
1172
|
+
"original_name": "Norman Reynolds",
|
|
1173
|
+
"popularity": 4.479,
|
|
1174
|
+
"profile_path": "/7fWeWsWm2QGo4oOd3z0hcps8WB8.jpg",
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"adult": false,
|
|
1178
|
+
"credit_id": "5aa9c24f0e0a26650500354b",
|
|
1179
|
+
"department": "Sound",
|
|
1180
|
+
"gender": 2,
|
|
1181
|
+
"id": 670,
|
|
1182
|
+
"job": "Sound Designer",
|
|
1183
|
+
"known_for_department": "Sound",
|
|
1184
|
+
"name": "Ben Burtt",
|
|
1185
|
+
"original_name": "Ben Burtt",
|
|
1186
|
+
"popularity": 1.589,
|
|
1187
|
+
"profile_path": "/16OhOb7WngOi4WOnGpRpbDSzYnd.jpg",
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"adult": false,
|
|
1191
|
+
"credit_id": "566e1a1092514125d3008094",
|
|
1192
|
+
"department": "Production",
|
|
1193
|
+
"gender": 2,
|
|
1194
|
+
"id": 711,
|
|
1195
|
+
"job": "Associate Producer",
|
|
1196
|
+
"known_for_department": "Production",
|
|
1197
|
+
"name": "Robert Watts",
|
|
1198
|
+
"original_name": "Robert Watts",
|
|
1199
|
+
"popularity": 1.094,
|
|
1200
|
+
"profile_path": "/28BlqdvRGNAdbWuzdXAIYissbgZ.jpg",
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"adult": false,
|
|
1204
|
+
"credit_id": "52fe431ec3a36847f803bb61",
|
|
1205
|
+
"department": "Writing",
|
|
1206
|
+
"gender": 1,
|
|
1207
|
+
"id": 4298,
|
|
1208
|
+
"job": "Screenplay",
|
|
1209
|
+
"known_for_department": "Writing",
|
|
1210
|
+
"name": "Leigh Brackett",
|
|
1211
|
+
"original_name": "Leigh Brackett",
|
|
1212
|
+
"popularity": 1.464,
|
|
1213
|
+
"profile_path": null,
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"adult": false,
|
|
1217
|
+
"credit_id": "566e187ec3a36834c100cebf",
|
|
1218
|
+
"department": "Art",
|
|
1219
|
+
"gender": 2,
|
|
1220
|
+
"id": 5059,
|
|
1221
|
+
"job": "Art Direction",
|
|
1222
|
+
"known_for_department": "Art",
|
|
1223
|
+
"name": "Leslie Dilley",
|
|
1224
|
+
"original_name": "Leslie Dilley",
|
|
1225
|
+
"popularity": 0.6,
|
|
1226
|
+
"profile_path": null,
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"adult": false,
|
|
1230
|
+
"credit_id": "566e18a29251412dbc007fec",
|
|
1231
|
+
"department": "Costume & Make-Up",
|
|
1232
|
+
"gender": 2,
|
|
1233
|
+
"id": 5061,
|
|
1234
|
+
"job": "Costume Design",
|
|
1235
|
+
"known_for_department": "Costume & Make-Up",
|
|
1236
|
+
"name": "John Mollo",
|
|
1237
|
+
"original_name": "John Mollo",
|
|
1238
|
+
"popularity": 0.6,
|
|
1239
|
+
"profile_path": null,
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
"adult": false,
|
|
1243
|
+
"credit_id": "52fe431ec3a36847f803bb67",
|
|
1244
|
+
"department": "Writing",
|
|
1245
|
+
"gender": 2,
|
|
1246
|
+
"id": 8844,
|
|
1247
|
+
"job": "Screenplay",
|
|
1248
|
+
"known_for_department": "Writing",
|
|
1249
|
+
"name": "Lawrence Kasdan",
|
|
1250
|
+
"original_name": "Lawrence Kasdan",
|
|
1251
|
+
"popularity": 2.788,
|
|
1252
|
+
"profile_path": "/hZAQC6MLyR1oLHRKEZ1oUEvh0Sy.jpg",
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"adult": false,
|
|
1256
|
+
"credit_id": "588fd68092514101a300da3d",
|
|
1257
|
+
"department": "Visual Effects",
|
|
1258
|
+
"gender": 2,
|
|
1259
|
+
"id": 7727,
|
|
1260
|
+
"job": "Animation",
|
|
1261
|
+
"known_for_department": "Visual Effects",
|
|
1262
|
+
"name": "Phil Tippett",
|
|
1263
|
+
"original_name": "Phil Tippett",
|
|
1264
|
+
"popularity": 1.85,
|
|
1265
|
+
"profile_path": "/qIjrlRrM6MwNkbCYwRbPYbvq9P7.jpg",
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"adult": false,
|
|
1269
|
+
"credit_id": "588fdcd7c3a3680b940001c2",
|
|
1270
|
+
"department": "Crew",
|
|
1271
|
+
"gender": 2,
|
|
1272
|
+
"id": 7727,
|
|
1273
|
+
"job": "Makeup Effects",
|
|
1274
|
+
"known_for_department": "Visual Effects",
|
|
1275
|
+
"name": "Phil Tippett",
|
|
1276
|
+
"original_name": "Phil Tippett",
|
|
1277
|
+
"popularity": 1.85,
|
|
1278
|
+
"profile_path": "/qIjrlRrM6MwNkbCYwRbPYbvq9P7.jpg",
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"adult": false,
|
|
1282
|
+
"credit_id": "56b3900c92514112b90014de",
|
|
1283
|
+
"department": "Production",
|
|
1284
|
+
"gender": 1,
|
|
1285
|
+
"id": 7778,
|
|
1286
|
+
"job": "Production Manager",
|
|
1287
|
+
"known_for_department": "Production",
|
|
1288
|
+
"name": "Patricia Carr",
|
|
1289
|
+
"original_name": "Patricia Carr",
|
|
1290
|
+
"popularity": 0.6,
|
|
1291
|
+
"profile_path": null,
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"adult": false,
|
|
1295
|
+
"credit_id": "566e189792514169e200d3ec",
|
|
1296
|
+
"department": "Art",
|
|
1297
|
+
"gender": 2,
|
|
1298
|
+
"id": 8526,
|
|
1299
|
+
"job": "Set Decoration",
|
|
1300
|
+
"known_for_department": "Art",
|
|
1301
|
+
"name": "Michael Ford",
|
|
1302
|
+
"original_name": "Michael Ford",
|
|
1303
|
+
"popularity": 0.6,
|
|
1304
|
+
"profile_path": null,
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"adult": false,
|
|
1308
|
+
"credit_id": "5ec507b83d3557001eec3f82",
|
|
1309
|
+
"department": "Production",
|
|
1310
|
+
"gender": 0,
|
|
1311
|
+
"id": 8651,
|
|
1312
|
+
"job": "Location Manager",
|
|
1313
|
+
"known_for_department": "Production",
|
|
1314
|
+
"name": "Philip Kohler",
|
|
1315
|
+
"original_name": "Philip Kohler",
|
|
1316
|
+
"popularity": 0.6,
|
|
1317
|
+
"profile_path": null,
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"adult": false,
|
|
1321
|
+
"credit_id": "52fe431ec3a36847f803bbbb",
|
|
1322
|
+
"department": "Crew",
|
|
1323
|
+
"gender": 0,
|
|
1324
|
+
"id": 9402,
|
|
1325
|
+
"job": "Special Effects",
|
|
1326
|
+
"known_for_department": "Crew",
|
|
1327
|
+
"name": "Brian Johnson",
|
|
1328
|
+
"original_name": "Brian Johnson",
|
|
1329
|
+
"popularity": 0.6,
|
|
1330
|
+
"profile_path": null,
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"adult": false,
|
|
1334
|
+
"credit_id": "5b04c7ddc3a36864a4002d0f",
|
|
1335
|
+
"department": "Costume & Make-Up",
|
|
1336
|
+
"gender": 2,
|
|
1337
|
+
"id": 11837,
|
|
1338
|
+
"job": "Makeup Artist",
|
|
1339
|
+
"known_for_department": "Costume & Make-Up",
|
|
1340
|
+
"name": "Stuart Freeborn",
|
|
1341
|
+
"original_name": "Stuart Freeborn",
|
|
1342
|
+
"popularity": 0.6,
|
|
1343
|
+
"profile_path": null,
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"adult": false,
|
|
1347
|
+
"credit_id": "566e188d92514169e200d3e5",
|
|
1348
|
+
"department": "Art",
|
|
1349
|
+
"gender": 2,
|
|
1350
|
+
"id": 10880,
|
|
1351
|
+
"job": "Art Direction",
|
|
1352
|
+
"known_for_department": "Art",
|
|
1353
|
+
"name": "Alan Tomkins",
|
|
1354
|
+
"original_name": "Alan Tomkins",
|
|
1355
|
+
"popularity": 0.6,
|
|
1356
|
+
"profile_path": null,
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"adult": false,
|
|
1360
|
+
"credit_id": "5f74815d19675700389de0c4",
|
|
1361
|
+
"department": "Costume & Make-Up",
|
|
1362
|
+
"gender": 2,
|
|
1363
|
+
"id": 16178,
|
|
1364
|
+
"job": "Makeup Artist",
|
|
1365
|
+
"known_for_department": "Costume & Make-Up",
|
|
1366
|
+
"name": "Rick Baker",
|
|
1367
|
+
"original_name": "Rick Baker",
|
|
1368
|
+
"popularity": 0.6,
|
|
1369
|
+
"profile_path": "/8thqXBS5CQF0U2zsHAVM9GH7i4I.jpg",
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"adult": false,
|
|
1373
|
+
"credit_id": "566e19eb92514173ff011180",
|
|
1374
|
+
"department": "Editing",
|
|
1375
|
+
"gender": 2,
|
|
1376
|
+
"id": 10766,
|
|
1377
|
+
"job": "Editor",
|
|
1378
|
+
"known_for_department": "Editing",
|
|
1379
|
+
"name": "Paul Hirsch",
|
|
1380
|
+
"original_name": "Paul Hirsch",
|
|
1381
|
+
"popularity": 0.98,
|
|
1382
|
+
"profile_path": null,
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"adult": false,
|
|
1386
|
+
"credit_id": "5ec506f5d2147c0022b7c86f",
|
|
1387
|
+
"department": "Directing",
|
|
1388
|
+
"gender": 2,
|
|
1389
|
+
"id": 16589,
|
|
1390
|
+
"job": "Second Unit Director",
|
|
1391
|
+
"known_for_department": "Directing",
|
|
1392
|
+
"name": "Peter MacDonald",
|
|
1393
|
+
"original_name": "Peter MacDonald",
|
|
1394
|
+
"popularity": 1.139,
|
|
1395
|
+
"profile_path": "/sulOWgN2WZKDOlg8JMpTv8TUSHh.jpg",
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"adult": false,
|
|
1399
|
+
"credit_id": "52fe431ec3a36847f803bb55",
|
|
1400
|
+
"department": "Directing",
|
|
1401
|
+
"gender": 2,
|
|
1402
|
+
"id": 10930,
|
|
1403
|
+
"job": "Director",
|
|
1404
|
+
"known_for_department": "Directing",
|
|
1405
|
+
"name": "Irvin Kershner",
|
|
1406
|
+
"original_name": "Irvin Kershner",
|
|
1407
|
+
"popularity": 0.939,
|
|
1408
|
+
"profile_path": "/imtFUtcASoh2e1Emtt62UuFkIWA.jpg",
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"adult": false,
|
|
1412
|
+
"credit_id": "5716ca509251414920003714",
|
|
1413
|
+
"department": "Visual Effects",
|
|
1414
|
+
"gender": 0,
|
|
1415
|
+
"id": 21548,
|
|
1416
|
+
"job": "Visual Effects",
|
|
1417
|
+
"known_for_department": "Visual Effects",
|
|
1418
|
+
"name": "Richard Edlund",
|
|
1419
|
+
"original_name": "Richard Edlund",
|
|
1420
|
+
"popularity": 0.6,
|
|
1421
|
+
"profile_path": null,
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"adult": false,
|
|
1425
|
+
"credit_id": "5ec506af3d3557001de2fd11",
|
|
1426
|
+
"department": "Directing",
|
|
1427
|
+
"gender": 2,
|
|
1428
|
+
"id": 23858,
|
|
1429
|
+
"job": "Second Unit Director",
|
|
1430
|
+
"known_for_department": "Directing",
|
|
1431
|
+
"name": "Harley Cokeliss",
|
|
1432
|
+
"original_name": "Harley Cokeliss",
|
|
1433
|
+
"popularity": 1.092,
|
|
1434
|
+
"profile_path": "/jUGTXXjzQKzyfP98RtJdsGqM0Fh.jpg",
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"adult": false,
|
|
1438
|
+
"credit_id": "56b3920b9251415320000e70",
|
|
1439
|
+
"department": "Costume & Make-Up",
|
|
1440
|
+
"gender": 0,
|
|
1441
|
+
"id": 29061,
|
|
1442
|
+
"job": "Costume Supervisor",
|
|
1443
|
+
"known_for_department": "Costume & Make-Up",
|
|
1444
|
+
"name": "Tiny Nicholls",
|
|
1445
|
+
"original_name": "Tiny Nicholls",
|
|
1446
|
+
"popularity": 0.98,
|
|
1447
|
+
"profile_path": null,
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"adult": false,
|
|
1451
|
+
"credit_id": "56b387e3c3a36806f10020e6",
|
|
1452
|
+
"department": "Crew",
|
|
1453
|
+
"gender": 2,
|
|
1454
|
+
"id": 53587,
|
|
1455
|
+
"job": "Stunt Coordinator",
|
|
1456
|
+
"known_for_department": "Acting",
|
|
1457
|
+
"name": "Peter Diamond",
|
|
1458
|
+
"original_name": "Peter Diamond",
|
|
1459
|
+
"popularity": 0.6,
|
|
1460
|
+
"profile_path": "/nVb4nFvWloTdzopD42aNV5osYKU.jpg",
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"adult": false,
|
|
1464
|
+
"credit_id": "56b3906cc3a36806ea00246a",
|
|
1465
|
+
"department": "Production",
|
|
1466
|
+
"gender": 2,
|
|
1467
|
+
"id": 66251,
|
|
1468
|
+
"job": "Production Supervisor",
|
|
1469
|
+
"known_for_department": "Production",
|
|
1470
|
+
"name": "Bruce Sharman",
|
|
1471
|
+
"original_name": "Bruce Sharman",
|
|
1472
|
+
"popularity": 0.6,
|
|
1473
|
+
"profile_path": null,
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
"adult": false,
|
|
1477
|
+
"credit_id": "57649a9d925141128a0004aa",
|
|
1478
|
+
"department": "Sound",
|
|
1479
|
+
"gender": 1,
|
|
1480
|
+
"id": 68127,
|
|
1481
|
+
"job": "Sound Editor",
|
|
1482
|
+
"known_for_department": "Editing",
|
|
1483
|
+
"name": "Bonnie Koehler",
|
|
1484
|
+
"original_name": "Bonnie Koehler",
|
|
1485
|
+
"popularity": 0.6,
|
|
1486
|
+
"profile_path": null,
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"adult": false,
|
|
1490
|
+
"credit_id": "5ec5069a140bad001d17409f",
|
|
1491
|
+
"department": "Directing",
|
|
1492
|
+
"gender": 0,
|
|
1493
|
+
"id": 75796,
|
|
1494
|
+
"job": "Second Assistant Director",
|
|
1495
|
+
"known_for_department": "Production",
|
|
1496
|
+
"name": "Roy Button",
|
|
1497
|
+
"original_name": "Roy Button",
|
|
1498
|
+
"popularity": 0.6,
|
|
1499
|
+
"profile_path": null,
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"adult": false,
|
|
1503
|
+
"credit_id": "5ec50603e635710020cb6c65",
|
|
1504
|
+
"department": "Production",
|
|
1505
|
+
"gender": 0,
|
|
1506
|
+
"id": 91517,
|
|
1507
|
+
"job": "Production Manager",
|
|
1508
|
+
"known_for_department": "Acting",
|
|
1509
|
+
"name": "Svend Johansen",
|
|
1510
|
+
"original_name": "Svend Johansen",
|
|
1511
|
+
"popularity": 0.612,
|
|
1512
|
+
"profile_path": null,
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"adult": false,
|
|
1516
|
+
"credit_id": "56b38fa192514114eb0022e9",
|
|
1517
|
+
"department": "Costume & Make-Up",
|
|
1518
|
+
"gender": 2,
|
|
1519
|
+
"id": 136024,
|
|
1520
|
+
"job": "Makeup Artist",
|
|
1521
|
+
"known_for_department": "Costume & Make-Up",
|
|
1522
|
+
"name": "Nick Maley",
|
|
1523
|
+
"original_name": "Nick Maley",
|
|
1524
|
+
"popularity": 0.6,
|
|
1525
|
+
"profile_path": null,
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
"adult": false,
|
|
1529
|
+
"credit_id": "56b2bca492514114d900066e",
|
|
1530
|
+
"department": "Crew",
|
|
1531
|
+
"gender": 2,
|
|
1532
|
+
"id": 202711,
|
|
1533
|
+
"job": "Stunts",
|
|
1534
|
+
"known_for_department": "Acting",
|
|
1535
|
+
"name": "Bob Anderson",
|
|
1536
|
+
"original_name": "Bob Anderson",
|
|
1537
|
+
"popularity": 0.608,
|
|
1538
|
+
"profile_path": "/67IDY3Jz1Oiu97DYokoQB46tL7x.jpg",
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"adult": false,
|
|
1542
|
+
"credit_id": "5ec50e556c8492001f289c34",
|
|
1543
|
+
"department": "Directing",
|
|
1544
|
+
"gender": 2,
|
|
1545
|
+
"id": 568911,
|
|
1546
|
+
"job": "Second Unit Director",
|
|
1547
|
+
"known_for_department": "Art",
|
|
1548
|
+
"name": "John Barry",
|
|
1549
|
+
"original_name": "John Barry",
|
|
1550
|
+
"popularity": 0.6,
|
|
1551
|
+
"profile_path": null,
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"adult": false,
|
|
1555
|
+
"credit_id": "566e1a22c3a36834c100cf47",
|
|
1556
|
+
"department": "Production",
|
|
1557
|
+
"gender": 2,
|
|
1558
|
+
"id": 948389,
|
|
1559
|
+
"job": "Associate Producer",
|
|
1560
|
+
"known_for_department": "Production",
|
|
1561
|
+
"name": "Jim Bloom",
|
|
1562
|
+
"original_name": "Jim Bloom",
|
|
1563
|
+
"popularity": 0.6,
|
|
1564
|
+
"profile_path": null,
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"adult": false,
|
|
1568
|
+
"credit_id": "5b04c81b9251414614002e67",
|
|
1569
|
+
"department": "Costume & Make-Up",
|
|
1570
|
+
"gender": 1,
|
|
1571
|
+
"id": 958468,
|
|
1572
|
+
"job": "Hairdresser",
|
|
1573
|
+
"known_for_department": "Costume & Make-Up",
|
|
1574
|
+
"name": "Barbara Ritchie",
|
|
1575
|
+
"original_name": "Barbara Ritchie",
|
|
1576
|
+
"popularity": 0.6,
|
|
1577
|
+
"profile_path": null,
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"adult": false,
|
|
1581
|
+
"credit_id": "5ae341c30e0a262a5e0420b5",
|
|
1582
|
+
"department": "Directing",
|
|
1583
|
+
"gender": 1,
|
|
1584
|
+
"id": 1117367,
|
|
1585
|
+
"job": "Continuity",
|
|
1586
|
+
"known_for_department": "Directing",
|
|
1587
|
+
"name": "Pamela Mann",
|
|
1588
|
+
"original_name": "Pamela Mann",
|
|
1589
|
+
"popularity": 0.6,
|
|
1590
|
+
"profile_path": null,
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
"adult": false,
|
|
1594
|
+
"credit_id": "566e188692514173ff011101",
|
|
1595
|
+
"department": "Art",
|
|
1596
|
+
"gender": 0,
|
|
1597
|
+
"id": 1125548,
|
|
1598
|
+
"job": "Art Direction",
|
|
1599
|
+
"known_for_department": "Art",
|
|
1600
|
+
"name": "Harry Lange",
|
|
1601
|
+
"original_name": "Harry Lange",
|
|
1602
|
+
"popularity": 0.6,
|
|
1603
|
+
"profile_path": null,
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
"adult": false,
|
|
1607
|
+
"credit_id": "5ae3415f0e0a262a640439f8",
|
|
1608
|
+
"department": "Directing",
|
|
1609
|
+
"gender": 2,
|
|
1610
|
+
"id": 1213681,
|
|
1611
|
+
"job": "First Assistant Director",
|
|
1612
|
+
"known_for_department": "Directing",
|
|
1613
|
+
"name": "David Tomblin",
|
|
1614
|
+
"original_name": "David Tomblin",
|
|
1615
|
+
"popularity": 0.6,
|
|
1616
|
+
"profile_path": null,
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
"adult": false,
|
|
1620
|
+
"credit_id": "56b392a992514114d70025ca",
|
|
1621
|
+
"department": "Sound",
|
|
1622
|
+
"gender": 0,
|
|
1623
|
+
"id": 1336275,
|
|
1624
|
+
"job": "Orchestrator",
|
|
1625
|
+
"known_for_department": "Sound",
|
|
1626
|
+
"name": "Herbert W. Spencer",
|
|
1627
|
+
"original_name": "Herbert W. Spencer",
|
|
1628
|
+
"popularity": 0.6,
|
|
1629
|
+
"profile_path": null,
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"adult": false,
|
|
1633
|
+
"credit_id": "5b04c8de0e0a261d990031f0",
|
|
1634
|
+
"department": "Sound",
|
|
1635
|
+
"gender": 0,
|
|
1636
|
+
"id": 1341781,
|
|
1637
|
+
"job": "Sound Re-Recording Mixer",
|
|
1638
|
+
"known_for_department": "Sound",
|
|
1639
|
+
"name": "Gregg Landaker",
|
|
1640
|
+
"original_name": "Gregg Landaker",
|
|
1641
|
+
"popularity": 0.98,
|
|
1642
|
+
"profile_path": null,
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
"adult": false,
|
|
1646
|
+
"credit_id": "56e9e30c9251417636001c84",
|
|
1647
|
+
"department": "Camera",
|
|
1648
|
+
"gender": 0,
|
|
1649
|
+
"id": 1424133,
|
|
1650
|
+
"job": "Camera Operator",
|
|
1651
|
+
"known_for_department": "Visual Effects",
|
|
1652
|
+
"name": "Paul Huston",
|
|
1653
|
+
"original_name": "Paul Huston",
|
|
1654
|
+
"popularity": 0.6,
|
|
1655
|
+
"profile_path": null,
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
"adult": false,
|
|
1659
|
+
"credit_id": "6185c01be93e950042daf5f9",
|
|
1660
|
+
"department": "Sound",
|
|
1661
|
+
"gender": 0,
|
|
1662
|
+
"id": 1425978,
|
|
1663
|
+
"job": "Sound Recordist",
|
|
1664
|
+
"known_for_department": "Sound",
|
|
1665
|
+
"name": "Gary Summers",
|
|
1666
|
+
"original_name": "Gary Summers",
|
|
1667
|
+
"popularity": 1.22,
|
|
1668
|
+
"profile_path": null,
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"adult": false,
|
|
1672
|
+
"credit_id": "59ae422bc3a3682cc8050ee0",
|
|
1673
|
+
"department": "Camera",
|
|
1674
|
+
"gender": 0,
|
|
1675
|
+
"id": 1427545,
|
|
1676
|
+
"job": "Still Photographer",
|
|
1677
|
+
"known_for_department": "Camera",
|
|
1678
|
+
"name": "George Whitear",
|
|
1679
|
+
"original_name": "George Whitear",
|
|
1680
|
+
"popularity": 0.6,
|
|
1681
|
+
"profile_path": null,
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"adult": false,
|
|
1685
|
+
"credit_id": "566e18499251412dbc007fc5",
|
|
1686
|
+
"department": "Production",
|
|
1687
|
+
"gender": 0,
|
|
1688
|
+
"id": 1548711,
|
|
1689
|
+
"job": "Casting",
|
|
1690
|
+
"known_for_department": "Production",
|
|
1691
|
+
"name": "Bob Edmiston",
|
|
1692
|
+
"original_name": "Bob Edmiston",
|
|
1693
|
+
"popularity": 0.6,
|
|
1694
|
+
"profile_path": null,
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"adult": false,
|
|
1698
|
+
"credit_id": "56b38c0192514114e10023f5",
|
|
1699
|
+
"department": "Visual Effects",
|
|
1700
|
+
"gender": 0,
|
|
1701
|
+
"id": 1572550,
|
|
1702
|
+
"job": "Visual Effects",
|
|
1703
|
+
"known_for_department": "Acting",
|
|
1704
|
+
"name": "Ralph McQuarrie",
|
|
1705
|
+
"original_name": "Ralph McQuarrie",
|
|
1706
|
+
"popularity": 1.4,
|
|
1707
|
+
"profile_path": "/co1vBL2JmWubBWHvFPQz8ld18aA.jpg",
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
"adult": false,
|
|
1711
|
+
"credit_id": "56b391ba92514114e5002365",
|
|
1712
|
+
"department": "Crew",
|
|
1713
|
+
"gender": 0,
|
|
1714
|
+
"id": 1572559,
|
|
1715
|
+
"job": "Driver",
|
|
1716
|
+
"known_for_department": "Crew",
|
|
1717
|
+
"name": "Terry Pritchard",
|
|
1718
|
+
"original_name": "Terry Pritchard",
|
|
1719
|
+
"popularity": 1.094,
|
|
1720
|
+
"profile_path": null,
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
"adult": false,
|
|
1724
|
+
"credit_id": "5ae3418cc3a36876b203e74f",
|
|
1725
|
+
"department": "Directing",
|
|
1726
|
+
"gender": 2,
|
|
1727
|
+
"id": 1575391,
|
|
1728
|
+
"job": "Second Assistant Director",
|
|
1729
|
+
"known_for_department": "Directing",
|
|
1730
|
+
"name": "Steve Lanning",
|
|
1731
|
+
"original_name": "Steve Lanning",
|
|
1732
|
+
"popularity": 0.6,
|
|
1733
|
+
"profile_path": null,
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"adult": false,
|
|
1737
|
+
"credit_id": "58d8124ac3a368124f059b2c",
|
|
1738
|
+
"department": "Lighting",
|
|
1739
|
+
"gender": 0,
|
|
1740
|
+
"id": 1588463,
|
|
1741
|
+
"job": "Gaffer",
|
|
1742
|
+
"known_for_department": "Lighting",
|
|
1743
|
+
"name": "Laurie Shane",
|
|
1744
|
+
"original_name": "Laurie Shane",
|
|
1745
|
+
"popularity": 0.6,
|
|
1746
|
+
"profile_path": null,
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"adult": false,
|
|
1750
|
+
"credit_id": "574dc4a792514112120000f0",
|
|
1751
|
+
"department": "Crew",
|
|
1752
|
+
"gender": 2,
|
|
1753
|
+
"id": 1629006,
|
|
1754
|
+
"job": "Special Effects",
|
|
1755
|
+
"known_for_department": "Visual Effects",
|
|
1756
|
+
"name": "David H. Watkins",
|
|
1757
|
+
"original_name": "David H. Watkins",
|
|
1758
|
+
"popularity": 0.6,
|
|
1759
|
+
"profile_path": null,
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
"adult": false,
|
|
1763
|
+
"credit_id": "5ae341a392514130d6005ace",
|
|
1764
|
+
"department": "Directing",
|
|
1765
|
+
"gender": 0,
|
|
1766
|
+
"id": 1649183,
|
|
1767
|
+
"job": "Continuity",
|
|
1768
|
+
"known_for_department": "Directing",
|
|
1769
|
+
"name": "Kay Rawlings",
|
|
1770
|
+
"original_name": "Kay Rawlings",
|
|
1771
|
+
"popularity": 0.6,
|
|
1772
|
+
"profile_path": null,
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
"adult": false,
|
|
1776
|
+
"credit_id": "58d80ec2925141442f010daa",
|
|
1777
|
+
"department": "Costume & Make-Up",
|
|
1778
|
+
"gender": 0,
|
|
1779
|
+
"id": 1784246,
|
|
1780
|
+
"job": "Wardrobe Supervisor",
|
|
1781
|
+
"known_for_department": "Costume & Make-Up",
|
|
1782
|
+
"name": "Eileen Sullivan",
|
|
1783
|
+
"original_name": "Eileen Sullivan",
|
|
1784
|
+
"popularity": 0.6,
|
|
1785
|
+
"profile_path": null,
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"adult": false,
|
|
1789
|
+
"credit_id": "5b04c7840e0a261d82002ebb",
|
|
1790
|
+
"department": "Costume & Make-Up",
|
|
1791
|
+
"gender": 0,
|
|
1792
|
+
"id": 1973867,
|
|
1793
|
+
"job": "Makeup Department Head",
|
|
1794
|
+
"known_for_department": "Costume & Make-Up",
|
|
1795
|
+
"name": "Graham Freeborn",
|
|
1796
|
+
"original_name": "Graham Freeborn",
|
|
1797
|
+
"popularity": 0.6,
|
|
1798
|
+
"profile_path": null,
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
"adult": false,
|
|
1802
|
+
"credit_id": "5b04c79e0e0a261d8f003965",
|
|
1803
|
+
"department": "Costume & Make-Up",
|
|
1804
|
+
"gender": 0,
|
|
1805
|
+
"id": 1984397,
|
|
1806
|
+
"job": "Makeup Artist",
|
|
1807
|
+
"known_for_department": "Costume & Make-Up",
|
|
1808
|
+
"name": "Kay Freeborn",
|
|
1809
|
+
"original_name": "Kay Freeborn",
|
|
1810
|
+
"popularity": 0.6,
|
|
1811
|
+
"profile_path": null,
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"adult": false,
|
|
1815
|
+
"credit_id": "5b04c8b40e0a261d80002da1",
|
|
1816
|
+
"department": "Sound",
|
|
1817
|
+
"gender": 0,
|
|
1818
|
+
"id": 1998464,
|
|
1819
|
+
"job": "Sound Editor",
|
|
1820
|
+
"known_for_department": "Sound",
|
|
1821
|
+
"name": "Richard Burrow",
|
|
1822
|
+
"original_name": "Richard Burrow",
|
|
1823
|
+
"popularity": 0.6,
|
|
1824
|
+
"profile_path": null,
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"adult": false,
|
|
1828
|
+
"credit_id": "5ae3420f0e0a262a52043715",
|
|
1829
|
+
"department": "Art",
|
|
1830
|
+
"gender": 2,
|
|
1831
|
+
"id": 2021319,
|
|
1832
|
+
"job": "Property Master",
|
|
1833
|
+
"known_for_department": "Art",
|
|
1834
|
+
"name": "Frank Bruton",
|
|
1835
|
+
"original_name": "Frank Bruton",
|
|
1836
|
+
"popularity": 0.6,
|
|
1837
|
+
"profile_path": null,
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"adult": false,
|
|
1841
|
+
"credit_id": "5c3f42219251417a60ad5764",
|
|
1842
|
+
"department": "Art",
|
|
1843
|
+
"gender": 2,
|
|
1844
|
+
"id": 2217113,
|
|
1845
|
+
"job": "Draughtsman",
|
|
1846
|
+
"known_for_department": "Art",
|
|
1847
|
+
"name": "Reg Bream",
|
|
1848
|
+
"original_name": "Reg Bream",
|
|
1849
|
+
"popularity": 0.98,
|
|
1850
|
+
"profile_path": null,
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
"adult": false,
|
|
1854
|
+
"credit_id": "5ff37a8067203d003dcbd373",
|
|
1855
|
+
"department": "Sound",
|
|
1856
|
+
"gender": 0,
|
|
1857
|
+
"id": 2922346,
|
|
1858
|
+
"job": "Musician",
|
|
1859
|
+
"known_for_department": "Acting",
|
|
1860
|
+
"name": "London Symphony Orchestra",
|
|
1861
|
+
"original_name": "London Symphony Orchestra",
|
|
1862
|
+
"popularity": 0.6,
|
|
1863
|
+
"profile_path": null,
|
|
1864
|
+
},
|
|
1865
|
+
]
|
|
1866
|
+
`;
|
|
1867
|
+
|
|
1868
|
+
exports[`resolveMovieCredits > when raw movie data has credits should return the correct response 1`] = `
|
|
1869
|
+
[
|
|
1870
|
+
{
|
|
1871
|
+
"adult": false,
|
|
1872
|
+
"credit_id": "52fe431ec3a36847f803bbcb",
|
|
1873
|
+
"department": "Production",
|
|
1874
|
+
"gender": 2,
|
|
1875
|
+
"id": 1,
|
|
1876
|
+
"job": "Executive Producer",
|
|
1877
|
+
"known_for_department": "Directing",
|
|
1878
|
+
"name": "George Lucas",
|
|
1879
|
+
"original_name": "George Lucas",
|
|
1880
|
+
"popularity": 5.709,
|
|
1881
|
+
"profile_path": "/WCSZzWdtPmdRxH9LUCVi2JPCSJ.jpg",
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"adult": false,
|
|
1885
|
+
"credit_id": "52fe431ec3a36847f803bbc5",
|
|
1886
|
+
"department": "Writing",
|
|
1887
|
+
"gender": 2,
|
|
1888
|
+
"id": 1,
|
|
1889
|
+
"job": "Story",
|
|
1890
|
+
"known_for_department": "Directing",
|
|
1891
|
+
"name": "George Lucas",
|
|
1892
|
+
"original_name": "George Lucas",
|
|
1893
|
+
"popularity": 5.709,
|
|
1894
|
+
"profile_path": "/WCSZzWdtPmdRxH9LUCVi2JPCSJ.jpg",
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
"adult": false,
|
|
1898
|
+
"credit_id": "52fe431ec3a36847f803bb5b",
|
|
1899
|
+
"department": "Production",
|
|
1900
|
+
"gender": 2,
|
|
1901
|
+
"id": 12401,
|
|
1902
|
+
"job": "Producer",
|
|
1903
|
+
"known_for_department": "Acting",
|
|
1904
|
+
"name": "Gary Kurtz",
|
|
1905
|
+
"original_name": "Gary Kurtz",
|
|
1906
|
+
"popularity": 1.219,
|
|
1907
|
+
"profile_path": "/q6tgPiNqzEOIYmHxMrpWoUirmmu.jpg",
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"adult": false,
|
|
1911
|
+
"credit_id": "5ec505d53d3557001de2fcb7",
|
|
1912
|
+
"department": "Production",
|
|
1913
|
+
"gender": 2,
|
|
1914
|
+
"id": 19801,
|
|
1915
|
+
"job": "Producer",
|
|
1916
|
+
"known_for_department": "Production",
|
|
1917
|
+
"name": "Rick McCallum",
|
|
1918
|
+
"original_name": "Rick McCallum",
|
|
1919
|
+
"popularity": 0.98,
|
|
1920
|
+
"profile_path": "/4no2HrRZXX7kiAXEmiTKEzLKAJM.jpg",
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
"adult": false,
|
|
1924
|
+
"credit_id": "52fe431ec3a36847f803bb89",
|
|
1925
|
+
"department": "Sound",
|
|
1926
|
+
"gender": 2,
|
|
1927
|
+
"id": 491,
|
|
1928
|
+
"job": "Original Music Composer",
|
|
1929
|
+
"known_for_department": "Sound",
|
|
1930
|
+
"name": "John Williams",
|
|
1931
|
+
"original_name": "John Williams",
|
|
1932
|
+
"popularity": 1.936,
|
|
1933
|
+
"profile_path": "/KFyMqUWeiBdP9tJcZyGWOqnrgK.jpg",
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"adult": false,
|
|
1937
|
+
"credit_id": "566e186c92514150010075c6",
|
|
1938
|
+
"department": "Production",
|
|
1939
|
+
"gender": 0,
|
|
1940
|
+
"id": 8337,
|
|
1941
|
+
"job": "Casting",
|
|
1942
|
+
"known_for_department": "Production",
|
|
1943
|
+
"name": "Terry Liebling",
|
|
1944
|
+
"original_name": "Terry Liebling",
|
|
1945
|
+
"popularity": 0.98,
|
|
1946
|
+
"profile_path": null,
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
"adult": false,
|
|
1950
|
+
"credit_id": "566e1a04925141500100762f",
|
|
1951
|
+
"department": "Camera",
|
|
1952
|
+
"gender": 2,
|
|
1953
|
+
"id": 307,
|
|
1954
|
+
"job": "Director of Photography",
|
|
1955
|
+
"known_for_department": "Camera",
|
|
1956
|
+
"name": "Peter Suschitzky",
|
|
1957
|
+
"original_name": "Peter Suschitzky",
|
|
1958
|
+
"popularity": 1.38,
|
|
1959
|
+
"profile_path": "/luMSBjy5mBakdKISk4GI9GrxBT2.jpg",
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
"adult": false,
|
|
1963
|
+
"credit_id": "566e185392514150010075b8",
|
|
1964
|
+
"department": "Production",
|
|
1965
|
+
"gender": 1,
|
|
1966
|
+
"id": 390,
|
|
1967
|
+
"job": "Casting",
|
|
1968
|
+
"known_for_department": "Production",
|
|
1969
|
+
"name": "Irene Lamb",
|
|
1970
|
+
"original_name": "Irene Lamb",
|
|
1971
|
+
"popularity": 0.6,
|
|
1972
|
+
"profile_path": null,
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"adult": false,
|
|
1976
|
+
"credit_id": "56b38f2592514114d900237b",
|
|
1977
|
+
"department": "Production",
|
|
1978
|
+
"gender": 2,
|
|
1979
|
+
"id": 665,
|
|
1980
|
+
"job": "Producer",
|
|
1981
|
+
"known_for_department": "Production",
|
|
1982
|
+
"name": "Howard G. Kazanjian",
|
|
1983
|
+
"original_name": "Howard G. Kazanjian",
|
|
1984
|
+
"popularity": 0.6,
|
|
1985
|
+
"profile_path": null,
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"adult": false,
|
|
1989
|
+
"credit_id": "566e1875c3a3682e9800c9e2",
|
|
1990
|
+
"department": "Art",
|
|
1991
|
+
"gender": 2,
|
|
1992
|
+
"id": 669,
|
|
1993
|
+
"job": "Production Design",
|
|
1994
|
+
"known_for_department": "Art",
|
|
1995
|
+
"name": "Norman Reynolds",
|
|
1996
|
+
"original_name": "Norman Reynolds",
|
|
1997
|
+
"popularity": 4.479,
|
|
1998
|
+
"profile_path": "/7fWeWsWm2QGo4oOd3z0hcps8WB8.jpg",
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
"adult": false,
|
|
2002
|
+
"credit_id": "5aa9c24f0e0a26650500354b",
|
|
2003
|
+
"department": "Sound",
|
|
2004
|
+
"gender": 2,
|
|
2005
|
+
"id": 670,
|
|
2006
|
+
"job": "Sound Designer",
|
|
2007
|
+
"known_for_department": "Sound",
|
|
2008
|
+
"name": "Ben Burtt",
|
|
2009
|
+
"original_name": "Ben Burtt",
|
|
2010
|
+
"popularity": 1.589,
|
|
2011
|
+
"profile_path": "/16OhOb7WngOi4WOnGpRpbDSzYnd.jpg",
|
|
2012
|
+
},
|
|
2013
|
+
{
|
|
2014
|
+
"adult": false,
|
|
2015
|
+
"credit_id": "566e1a1092514125d3008094",
|
|
2016
|
+
"department": "Production",
|
|
2017
|
+
"gender": 2,
|
|
2018
|
+
"id": 711,
|
|
2019
|
+
"job": "Associate Producer",
|
|
2020
|
+
"known_for_department": "Production",
|
|
2021
|
+
"name": "Robert Watts",
|
|
2022
|
+
"original_name": "Robert Watts",
|
|
2023
|
+
"popularity": 1.094,
|
|
2024
|
+
"profile_path": "/28BlqdvRGNAdbWuzdXAIYissbgZ.jpg",
|
|
2025
|
+
},
|
|
2026
|
+
{
|
|
2027
|
+
"adult": false,
|
|
2028
|
+
"credit_id": "52fe431ec3a36847f803bb61",
|
|
2029
|
+
"department": "Writing",
|
|
2030
|
+
"gender": 1,
|
|
2031
|
+
"id": 4298,
|
|
2032
|
+
"job": "Screenplay",
|
|
2033
|
+
"known_for_department": "Writing",
|
|
2034
|
+
"name": "Leigh Brackett",
|
|
2035
|
+
"original_name": "Leigh Brackett",
|
|
2036
|
+
"popularity": 1.464,
|
|
2037
|
+
"profile_path": null,
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"adult": false,
|
|
2041
|
+
"credit_id": "566e187ec3a36834c100cebf",
|
|
2042
|
+
"department": "Art",
|
|
2043
|
+
"gender": 2,
|
|
2044
|
+
"id": 5059,
|
|
2045
|
+
"job": "Art Direction",
|
|
2046
|
+
"known_for_department": "Art",
|
|
2047
|
+
"name": "Leslie Dilley",
|
|
2048
|
+
"original_name": "Leslie Dilley",
|
|
2049
|
+
"popularity": 0.6,
|
|
2050
|
+
"profile_path": null,
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
"adult": false,
|
|
2054
|
+
"credit_id": "566e18a29251412dbc007fec",
|
|
2055
|
+
"department": "Costume & Make-Up",
|
|
2056
|
+
"gender": 2,
|
|
2057
|
+
"id": 5061,
|
|
2058
|
+
"job": "Costume Design",
|
|
2059
|
+
"known_for_department": "Costume & Make-Up",
|
|
2060
|
+
"name": "John Mollo",
|
|
2061
|
+
"original_name": "John Mollo",
|
|
2062
|
+
"popularity": 0.6,
|
|
2063
|
+
"profile_path": null,
|
|
2064
|
+
},
|
|
2065
|
+
{
|
|
2066
|
+
"adult": false,
|
|
2067
|
+
"credit_id": "52fe431ec3a36847f803bb67",
|
|
2068
|
+
"department": "Writing",
|
|
2069
|
+
"gender": 2,
|
|
2070
|
+
"id": 8844,
|
|
2071
|
+
"job": "Screenplay",
|
|
2072
|
+
"known_for_department": "Writing",
|
|
2073
|
+
"name": "Lawrence Kasdan",
|
|
2074
|
+
"original_name": "Lawrence Kasdan",
|
|
2075
|
+
"popularity": 2.788,
|
|
2076
|
+
"profile_path": "/hZAQC6MLyR1oLHRKEZ1oUEvh0Sy.jpg",
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
"adult": false,
|
|
2080
|
+
"credit_id": "588fd68092514101a300da3d",
|
|
2081
|
+
"department": "Visual Effects",
|
|
2082
|
+
"gender": 2,
|
|
2083
|
+
"id": 7727,
|
|
2084
|
+
"job": "Animation",
|
|
2085
|
+
"known_for_department": "Visual Effects",
|
|
2086
|
+
"name": "Phil Tippett",
|
|
2087
|
+
"original_name": "Phil Tippett",
|
|
2088
|
+
"popularity": 1.85,
|
|
2089
|
+
"profile_path": "/qIjrlRrM6MwNkbCYwRbPYbvq9P7.jpg",
|
|
2090
|
+
},
|
|
2091
|
+
{
|
|
2092
|
+
"adult": false,
|
|
2093
|
+
"credit_id": "588fdcd7c3a3680b940001c2",
|
|
2094
|
+
"department": "Crew",
|
|
2095
|
+
"gender": 2,
|
|
2096
|
+
"id": 7727,
|
|
2097
|
+
"job": "Makeup Effects",
|
|
2098
|
+
"known_for_department": "Visual Effects",
|
|
2099
|
+
"name": "Phil Tippett",
|
|
2100
|
+
"original_name": "Phil Tippett",
|
|
2101
|
+
"popularity": 1.85,
|
|
2102
|
+
"profile_path": "/qIjrlRrM6MwNkbCYwRbPYbvq9P7.jpg",
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"adult": false,
|
|
2106
|
+
"credit_id": "56b3900c92514112b90014de",
|
|
2107
|
+
"department": "Production",
|
|
2108
|
+
"gender": 1,
|
|
2109
|
+
"id": 7778,
|
|
2110
|
+
"job": "Production Manager",
|
|
2111
|
+
"known_for_department": "Production",
|
|
2112
|
+
"name": "Patricia Carr",
|
|
2113
|
+
"original_name": "Patricia Carr",
|
|
2114
|
+
"popularity": 0.6,
|
|
2115
|
+
"profile_path": null,
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
"adult": false,
|
|
2119
|
+
"credit_id": "566e189792514169e200d3ec",
|
|
2120
|
+
"department": "Art",
|
|
2121
|
+
"gender": 2,
|
|
2122
|
+
"id": 8526,
|
|
2123
|
+
"job": "Set Decoration",
|
|
2124
|
+
"known_for_department": "Art",
|
|
2125
|
+
"name": "Michael Ford",
|
|
2126
|
+
"original_name": "Michael Ford",
|
|
2127
|
+
"popularity": 0.6,
|
|
2128
|
+
"profile_path": null,
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"adult": false,
|
|
2132
|
+
"credit_id": "5ec507b83d3557001eec3f82",
|
|
2133
|
+
"department": "Production",
|
|
2134
|
+
"gender": 0,
|
|
2135
|
+
"id": 8651,
|
|
2136
|
+
"job": "Location Manager",
|
|
2137
|
+
"known_for_department": "Production",
|
|
2138
|
+
"name": "Philip Kohler",
|
|
2139
|
+
"original_name": "Philip Kohler",
|
|
2140
|
+
"popularity": 0.6,
|
|
2141
|
+
"profile_path": null,
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"adult": false,
|
|
2145
|
+
"credit_id": "52fe431ec3a36847f803bbbb",
|
|
2146
|
+
"department": "Crew",
|
|
2147
|
+
"gender": 0,
|
|
2148
|
+
"id": 9402,
|
|
2149
|
+
"job": "Special Effects",
|
|
2150
|
+
"known_for_department": "Crew",
|
|
2151
|
+
"name": "Brian Johnson",
|
|
2152
|
+
"original_name": "Brian Johnson",
|
|
2153
|
+
"popularity": 0.6,
|
|
2154
|
+
"profile_path": null,
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
"adult": false,
|
|
2158
|
+
"credit_id": "5b04c7ddc3a36864a4002d0f",
|
|
2159
|
+
"department": "Costume & Make-Up",
|
|
2160
|
+
"gender": 2,
|
|
2161
|
+
"id": 11837,
|
|
2162
|
+
"job": "Makeup Artist",
|
|
2163
|
+
"known_for_department": "Costume & Make-Up",
|
|
2164
|
+
"name": "Stuart Freeborn",
|
|
2165
|
+
"original_name": "Stuart Freeborn",
|
|
2166
|
+
"popularity": 0.6,
|
|
2167
|
+
"profile_path": null,
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"adult": false,
|
|
2171
|
+
"credit_id": "566e188d92514169e200d3e5",
|
|
2172
|
+
"department": "Art",
|
|
2173
|
+
"gender": 2,
|
|
2174
|
+
"id": 10880,
|
|
2175
|
+
"job": "Art Direction",
|
|
2176
|
+
"known_for_department": "Art",
|
|
2177
|
+
"name": "Alan Tomkins",
|
|
2178
|
+
"original_name": "Alan Tomkins",
|
|
2179
|
+
"popularity": 0.6,
|
|
2180
|
+
"profile_path": null,
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"adult": false,
|
|
2184
|
+
"credit_id": "5f74815d19675700389de0c4",
|
|
2185
|
+
"department": "Costume & Make-Up",
|
|
2186
|
+
"gender": 2,
|
|
2187
|
+
"id": 16178,
|
|
2188
|
+
"job": "Makeup Artist",
|
|
2189
|
+
"known_for_department": "Costume & Make-Up",
|
|
2190
|
+
"name": "Rick Baker",
|
|
2191
|
+
"original_name": "Rick Baker",
|
|
2192
|
+
"popularity": 0.6,
|
|
2193
|
+
"profile_path": "/8thqXBS5CQF0U2zsHAVM9GH7i4I.jpg",
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"adult": false,
|
|
2197
|
+
"credit_id": "566e19eb92514173ff011180",
|
|
2198
|
+
"department": "Editing",
|
|
2199
|
+
"gender": 2,
|
|
2200
|
+
"id": 10766,
|
|
2201
|
+
"job": "Editor",
|
|
2202
|
+
"known_for_department": "Editing",
|
|
2203
|
+
"name": "Paul Hirsch",
|
|
2204
|
+
"original_name": "Paul Hirsch",
|
|
2205
|
+
"popularity": 0.98,
|
|
2206
|
+
"profile_path": null,
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
"adult": false,
|
|
2210
|
+
"credit_id": "5ec506f5d2147c0022b7c86f",
|
|
2211
|
+
"department": "Directing",
|
|
2212
|
+
"gender": 2,
|
|
2213
|
+
"id": 16589,
|
|
2214
|
+
"job": "Second Unit Director",
|
|
2215
|
+
"known_for_department": "Directing",
|
|
2216
|
+
"name": "Peter MacDonald",
|
|
2217
|
+
"original_name": "Peter MacDonald",
|
|
2218
|
+
"popularity": 1.139,
|
|
2219
|
+
"profile_path": "/sulOWgN2WZKDOlg8JMpTv8TUSHh.jpg",
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
"adult": false,
|
|
2223
|
+
"credit_id": "52fe431ec3a36847f803bb55",
|
|
2224
|
+
"department": "Directing",
|
|
2225
|
+
"gender": 2,
|
|
2226
|
+
"id": 10930,
|
|
2227
|
+
"job": "Director",
|
|
2228
|
+
"known_for_department": "Directing",
|
|
2229
|
+
"name": "Irvin Kershner",
|
|
2230
|
+
"original_name": "Irvin Kershner",
|
|
2231
|
+
"popularity": 0.939,
|
|
2232
|
+
"profile_path": "/imtFUtcASoh2e1Emtt62UuFkIWA.jpg",
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
"adult": false,
|
|
2236
|
+
"credit_id": "5716ca509251414920003714",
|
|
2237
|
+
"department": "Visual Effects",
|
|
2238
|
+
"gender": 0,
|
|
2239
|
+
"id": 21548,
|
|
2240
|
+
"job": "Visual Effects",
|
|
2241
|
+
"known_for_department": "Visual Effects",
|
|
2242
|
+
"name": "Richard Edlund",
|
|
2243
|
+
"original_name": "Richard Edlund",
|
|
2244
|
+
"popularity": 0.6,
|
|
2245
|
+
"profile_path": null,
|
|
2246
|
+
},
|
|
2247
|
+
{
|
|
2248
|
+
"adult": false,
|
|
2249
|
+
"credit_id": "5ec506af3d3557001de2fd11",
|
|
2250
|
+
"department": "Directing",
|
|
2251
|
+
"gender": 2,
|
|
2252
|
+
"id": 23858,
|
|
2253
|
+
"job": "Second Unit Director",
|
|
2254
|
+
"known_for_department": "Directing",
|
|
2255
|
+
"name": "Harley Cokeliss",
|
|
2256
|
+
"original_name": "Harley Cokeliss",
|
|
2257
|
+
"popularity": 1.092,
|
|
2258
|
+
"profile_path": "/jUGTXXjzQKzyfP98RtJdsGqM0Fh.jpg",
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"adult": false,
|
|
2262
|
+
"credit_id": "56b3920b9251415320000e70",
|
|
2263
|
+
"department": "Costume & Make-Up",
|
|
2264
|
+
"gender": 0,
|
|
2265
|
+
"id": 29061,
|
|
2266
|
+
"job": "Costume Supervisor",
|
|
2267
|
+
"known_for_department": "Costume & Make-Up",
|
|
2268
|
+
"name": "Tiny Nicholls",
|
|
2269
|
+
"original_name": "Tiny Nicholls",
|
|
2270
|
+
"popularity": 0.98,
|
|
2271
|
+
"profile_path": null,
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"adult": false,
|
|
2275
|
+
"credit_id": "56b387e3c3a36806f10020e6",
|
|
2276
|
+
"department": "Crew",
|
|
2277
|
+
"gender": 2,
|
|
2278
|
+
"id": 53587,
|
|
2279
|
+
"job": "Stunt Coordinator",
|
|
2280
|
+
"known_for_department": "Acting",
|
|
2281
|
+
"name": "Peter Diamond",
|
|
2282
|
+
"original_name": "Peter Diamond",
|
|
2283
|
+
"popularity": 0.6,
|
|
2284
|
+
"profile_path": "/nVb4nFvWloTdzopD42aNV5osYKU.jpg",
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
"adult": false,
|
|
2288
|
+
"credit_id": "56b3906cc3a36806ea00246a",
|
|
2289
|
+
"department": "Production",
|
|
2290
|
+
"gender": 2,
|
|
2291
|
+
"id": 66251,
|
|
2292
|
+
"job": "Production Supervisor",
|
|
2293
|
+
"known_for_department": "Production",
|
|
2294
|
+
"name": "Bruce Sharman",
|
|
2295
|
+
"original_name": "Bruce Sharman",
|
|
2296
|
+
"popularity": 0.6,
|
|
2297
|
+
"profile_path": null,
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"adult": false,
|
|
2301
|
+
"credit_id": "57649a9d925141128a0004aa",
|
|
2302
|
+
"department": "Sound",
|
|
2303
|
+
"gender": 1,
|
|
2304
|
+
"id": 68127,
|
|
2305
|
+
"job": "Sound Editor",
|
|
2306
|
+
"known_for_department": "Editing",
|
|
2307
|
+
"name": "Bonnie Koehler",
|
|
2308
|
+
"original_name": "Bonnie Koehler",
|
|
2309
|
+
"popularity": 0.6,
|
|
2310
|
+
"profile_path": null,
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
"adult": false,
|
|
2314
|
+
"credit_id": "5ec5069a140bad001d17409f",
|
|
2315
|
+
"department": "Directing",
|
|
2316
|
+
"gender": 0,
|
|
2317
|
+
"id": 75796,
|
|
2318
|
+
"job": "Second Assistant Director",
|
|
2319
|
+
"known_for_department": "Production",
|
|
2320
|
+
"name": "Roy Button",
|
|
2321
|
+
"original_name": "Roy Button",
|
|
2322
|
+
"popularity": 0.6,
|
|
2323
|
+
"profile_path": null,
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
"adult": false,
|
|
2327
|
+
"credit_id": "5ec50603e635710020cb6c65",
|
|
2328
|
+
"department": "Production",
|
|
2329
|
+
"gender": 0,
|
|
2330
|
+
"id": 91517,
|
|
2331
|
+
"job": "Production Manager",
|
|
2332
|
+
"known_for_department": "Acting",
|
|
2333
|
+
"name": "Svend Johansen",
|
|
2334
|
+
"original_name": "Svend Johansen",
|
|
2335
|
+
"popularity": 0.612,
|
|
2336
|
+
"profile_path": null,
|
|
2337
|
+
},
|
|
2338
|
+
{
|
|
2339
|
+
"adult": false,
|
|
2340
|
+
"credit_id": "56b38fa192514114eb0022e9",
|
|
2341
|
+
"department": "Costume & Make-Up",
|
|
2342
|
+
"gender": 2,
|
|
2343
|
+
"id": 136024,
|
|
2344
|
+
"job": "Makeup Artist",
|
|
2345
|
+
"known_for_department": "Costume & Make-Up",
|
|
2346
|
+
"name": "Nick Maley",
|
|
2347
|
+
"original_name": "Nick Maley",
|
|
2348
|
+
"popularity": 0.6,
|
|
2349
|
+
"profile_path": null,
|
|
2350
|
+
},
|
|
2351
|
+
{
|
|
2352
|
+
"adult": false,
|
|
2353
|
+
"credit_id": "56b2bca492514114d900066e",
|
|
2354
|
+
"department": "Crew",
|
|
2355
|
+
"gender": 2,
|
|
2356
|
+
"id": 202711,
|
|
2357
|
+
"job": "Stunts",
|
|
2358
|
+
"known_for_department": "Acting",
|
|
2359
|
+
"name": "Bob Anderson",
|
|
2360
|
+
"original_name": "Bob Anderson",
|
|
2361
|
+
"popularity": 0.608,
|
|
2362
|
+
"profile_path": "/67IDY3Jz1Oiu97DYokoQB46tL7x.jpg",
|
|
2363
|
+
},
|
|
2364
|
+
{
|
|
2365
|
+
"adult": false,
|
|
2366
|
+
"credit_id": "5ec50e556c8492001f289c34",
|
|
2367
|
+
"department": "Directing",
|
|
2368
|
+
"gender": 2,
|
|
2369
|
+
"id": 568911,
|
|
2370
|
+
"job": "Second Unit Director",
|
|
2371
|
+
"known_for_department": "Art",
|
|
2372
|
+
"name": "John Barry",
|
|
2373
|
+
"original_name": "John Barry",
|
|
2374
|
+
"popularity": 0.6,
|
|
2375
|
+
"profile_path": null,
|
|
2376
|
+
},
|
|
2377
|
+
{
|
|
2378
|
+
"adult": false,
|
|
2379
|
+
"credit_id": "566e1a22c3a36834c100cf47",
|
|
2380
|
+
"department": "Production",
|
|
2381
|
+
"gender": 2,
|
|
2382
|
+
"id": 948389,
|
|
2383
|
+
"job": "Associate Producer",
|
|
2384
|
+
"known_for_department": "Production",
|
|
2385
|
+
"name": "Jim Bloom",
|
|
2386
|
+
"original_name": "Jim Bloom",
|
|
2387
|
+
"popularity": 0.6,
|
|
2388
|
+
"profile_path": null,
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
"adult": false,
|
|
2392
|
+
"credit_id": "5b04c81b9251414614002e67",
|
|
2393
|
+
"department": "Costume & Make-Up",
|
|
2394
|
+
"gender": 1,
|
|
2395
|
+
"id": 958468,
|
|
2396
|
+
"job": "Hairdresser",
|
|
2397
|
+
"known_for_department": "Costume & Make-Up",
|
|
2398
|
+
"name": "Barbara Ritchie",
|
|
2399
|
+
"original_name": "Barbara Ritchie",
|
|
2400
|
+
"popularity": 0.6,
|
|
2401
|
+
"profile_path": null,
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
"adult": false,
|
|
2405
|
+
"credit_id": "5ae341c30e0a262a5e0420b5",
|
|
2406
|
+
"department": "Directing",
|
|
2407
|
+
"gender": 1,
|
|
2408
|
+
"id": 1117367,
|
|
2409
|
+
"job": "Continuity",
|
|
2410
|
+
"known_for_department": "Directing",
|
|
2411
|
+
"name": "Pamela Mann",
|
|
2412
|
+
"original_name": "Pamela Mann",
|
|
2413
|
+
"popularity": 0.6,
|
|
2414
|
+
"profile_path": null,
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
"adult": false,
|
|
2418
|
+
"credit_id": "566e188692514173ff011101",
|
|
2419
|
+
"department": "Art",
|
|
2420
|
+
"gender": 0,
|
|
2421
|
+
"id": 1125548,
|
|
2422
|
+
"job": "Art Direction",
|
|
2423
|
+
"known_for_department": "Art",
|
|
2424
|
+
"name": "Harry Lange",
|
|
2425
|
+
"original_name": "Harry Lange",
|
|
2426
|
+
"popularity": 0.6,
|
|
2427
|
+
"profile_path": null,
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"adult": false,
|
|
2431
|
+
"credit_id": "5ae3415f0e0a262a640439f8",
|
|
2432
|
+
"department": "Directing",
|
|
2433
|
+
"gender": 2,
|
|
2434
|
+
"id": 1213681,
|
|
2435
|
+
"job": "First Assistant Director",
|
|
2436
|
+
"known_for_department": "Directing",
|
|
2437
|
+
"name": "David Tomblin",
|
|
2438
|
+
"original_name": "David Tomblin",
|
|
2439
|
+
"popularity": 0.6,
|
|
2440
|
+
"profile_path": null,
|
|
2441
|
+
},
|
|
2442
|
+
{
|
|
2443
|
+
"adult": false,
|
|
2444
|
+
"credit_id": "56b392a992514114d70025ca",
|
|
2445
|
+
"department": "Sound",
|
|
2446
|
+
"gender": 0,
|
|
2447
|
+
"id": 1336275,
|
|
2448
|
+
"job": "Orchestrator",
|
|
2449
|
+
"known_for_department": "Sound",
|
|
2450
|
+
"name": "Herbert W. Spencer",
|
|
2451
|
+
"original_name": "Herbert W. Spencer",
|
|
2452
|
+
"popularity": 0.6,
|
|
2453
|
+
"profile_path": null,
|
|
2454
|
+
},
|
|
2455
|
+
{
|
|
2456
|
+
"adult": false,
|
|
2457
|
+
"credit_id": "5b04c8de0e0a261d990031f0",
|
|
2458
|
+
"department": "Sound",
|
|
2459
|
+
"gender": 0,
|
|
2460
|
+
"id": 1341781,
|
|
2461
|
+
"job": "Sound Re-Recording Mixer",
|
|
2462
|
+
"known_for_department": "Sound",
|
|
2463
|
+
"name": "Gregg Landaker",
|
|
2464
|
+
"original_name": "Gregg Landaker",
|
|
2465
|
+
"popularity": 0.98,
|
|
2466
|
+
"profile_path": null,
|
|
2467
|
+
},
|
|
2468
|
+
{
|
|
2469
|
+
"adult": false,
|
|
2470
|
+
"credit_id": "56e9e30c9251417636001c84",
|
|
2471
|
+
"department": "Camera",
|
|
2472
|
+
"gender": 0,
|
|
2473
|
+
"id": 1424133,
|
|
2474
|
+
"job": "Camera Operator",
|
|
2475
|
+
"known_for_department": "Visual Effects",
|
|
2476
|
+
"name": "Paul Huston",
|
|
2477
|
+
"original_name": "Paul Huston",
|
|
2478
|
+
"popularity": 0.6,
|
|
2479
|
+
"profile_path": null,
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
"adult": false,
|
|
2483
|
+
"credit_id": "6185c01be93e950042daf5f9",
|
|
2484
|
+
"department": "Sound",
|
|
2485
|
+
"gender": 0,
|
|
2486
|
+
"id": 1425978,
|
|
2487
|
+
"job": "Sound Recordist",
|
|
2488
|
+
"known_for_department": "Sound",
|
|
2489
|
+
"name": "Gary Summers",
|
|
2490
|
+
"original_name": "Gary Summers",
|
|
2491
|
+
"popularity": 1.22,
|
|
2492
|
+
"profile_path": null,
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
"adult": false,
|
|
2496
|
+
"credit_id": "59ae422bc3a3682cc8050ee0",
|
|
2497
|
+
"department": "Camera",
|
|
2498
|
+
"gender": 0,
|
|
2499
|
+
"id": 1427545,
|
|
2500
|
+
"job": "Still Photographer",
|
|
2501
|
+
"known_for_department": "Camera",
|
|
2502
|
+
"name": "George Whitear",
|
|
2503
|
+
"original_name": "George Whitear",
|
|
2504
|
+
"popularity": 0.6,
|
|
2505
|
+
"profile_path": null,
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
"adult": false,
|
|
2509
|
+
"credit_id": "566e18499251412dbc007fc5",
|
|
2510
|
+
"department": "Production",
|
|
2511
|
+
"gender": 0,
|
|
2512
|
+
"id": 1548711,
|
|
2513
|
+
"job": "Casting",
|
|
2514
|
+
"known_for_department": "Production",
|
|
2515
|
+
"name": "Bob Edmiston",
|
|
2516
|
+
"original_name": "Bob Edmiston",
|
|
2517
|
+
"popularity": 0.6,
|
|
2518
|
+
"profile_path": null,
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
"adult": false,
|
|
2522
|
+
"credit_id": "56b38c0192514114e10023f5",
|
|
2523
|
+
"department": "Visual Effects",
|
|
2524
|
+
"gender": 0,
|
|
2525
|
+
"id": 1572550,
|
|
2526
|
+
"job": "Visual Effects",
|
|
2527
|
+
"known_for_department": "Acting",
|
|
2528
|
+
"name": "Ralph McQuarrie",
|
|
2529
|
+
"original_name": "Ralph McQuarrie",
|
|
2530
|
+
"popularity": 1.4,
|
|
2531
|
+
"profile_path": "/co1vBL2JmWubBWHvFPQz8ld18aA.jpg",
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
"adult": false,
|
|
2535
|
+
"credit_id": "56b391ba92514114e5002365",
|
|
2536
|
+
"department": "Crew",
|
|
2537
|
+
"gender": 0,
|
|
2538
|
+
"id": 1572559,
|
|
2539
|
+
"job": "Driver",
|
|
2540
|
+
"known_for_department": "Crew",
|
|
2541
|
+
"name": "Terry Pritchard",
|
|
2542
|
+
"original_name": "Terry Pritchard",
|
|
2543
|
+
"popularity": 1.094,
|
|
2544
|
+
"profile_path": null,
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
"adult": false,
|
|
2548
|
+
"credit_id": "5ae3418cc3a36876b203e74f",
|
|
2549
|
+
"department": "Directing",
|
|
2550
|
+
"gender": 2,
|
|
2551
|
+
"id": 1575391,
|
|
2552
|
+
"job": "Second Assistant Director",
|
|
2553
|
+
"known_for_department": "Directing",
|
|
2554
|
+
"name": "Steve Lanning",
|
|
2555
|
+
"original_name": "Steve Lanning",
|
|
2556
|
+
"popularity": 0.6,
|
|
2557
|
+
"profile_path": null,
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
"adult": false,
|
|
2561
|
+
"credit_id": "58d8124ac3a368124f059b2c",
|
|
2562
|
+
"department": "Lighting",
|
|
2563
|
+
"gender": 0,
|
|
2564
|
+
"id": 1588463,
|
|
2565
|
+
"job": "Gaffer",
|
|
2566
|
+
"known_for_department": "Lighting",
|
|
2567
|
+
"name": "Laurie Shane",
|
|
2568
|
+
"original_name": "Laurie Shane",
|
|
2569
|
+
"popularity": 0.6,
|
|
2570
|
+
"profile_path": null,
|
|
2571
|
+
},
|
|
2572
|
+
{
|
|
2573
|
+
"adult": false,
|
|
2574
|
+
"credit_id": "574dc4a792514112120000f0",
|
|
2575
|
+
"department": "Crew",
|
|
2576
|
+
"gender": 2,
|
|
2577
|
+
"id": 1629006,
|
|
2578
|
+
"job": "Special Effects",
|
|
2579
|
+
"known_for_department": "Visual Effects",
|
|
2580
|
+
"name": "David H. Watkins",
|
|
2581
|
+
"original_name": "David H. Watkins",
|
|
2582
|
+
"popularity": 0.6,
|
|
2583
|
+
"profile_path": null,
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"adult": false,
|
|
2587
|
+
"credit_id": "5ae341a392514130d6005ace",
|
|
2588
|
+
"department": "Directing",
|
|
2589
|
+
"gender": 0,
|
|
2590
|
+
"id": 1649183,
|
|
2591
|
+
"job": "Continuity",
|
|
2592
|
+
"known_for_department": "Directing",
|
|
2593
|
+
"name": "Kay Rawlings",
|
|
2594
|
+
"original_name": "Kay Rawlings",
|
|
2595
|
+
"popularity": 0.6,
|
|
2596
|
+
"profile_path": null,
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
"adult": false,
|
|
2600
|
+
"credit_id": "58d80ec2925141442f010daa",
|
|
2601
|
+
"department": "Costume & Make-Up",
|
|
2602
|
+
"gender": 0,
|
|
2603
|
+
"id": 1784246,
|
|
2604
|
+
"job": "Wardrobe Supervisor",
|
|
2605
|
+
"known_for_department": "Costume & Make-Up",
|
|
2606
|
+
"name": "Eileen Sullivan",
|
|
2607
|
+
"original_name": "Eileen Sullivan",
|
|
2608
|
+
"popularity": 0.6,
|
|
2609
|
+
"profile_path": null,
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
"adult": false,
|
|
2613
|
+
"credit_id": "5b04c7840e0a261d82002ebb",
|
|
2614
|
+
"department": "Costume & Make-Up",
|
|
2615
|
+
"gender": 0,
|
|
2616
|
+
"id": 1973867,
|
|
2617
|
+
"job": "Makeup Department Head",
|
|
2618
|
+
"known_for_department": "Costume & Make-Up",
|
|
2619
|
+
"name": "Graham Freeborn",
|
|
2620
|
+
"original_name": "Graham Freeborn",
|
|
2621
|
+
"popularity": 0.6,
|
|
2622
|
+
"profile_path": null,
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
"adult": false,
|
|
2626
|
+
"credit_id": "5b04c79e0e0a261d8f003965",
|
|
2627
|
+
"department": "Costume & Make-Up",
|
|
2628
|
+
"gender": 0,
|
|
2629
|
+
"id": 1984397,
|
|
2630
|
+
"job": "Makeup Artist",
|
|
2631
|
+
"known_for_department": "Costume & Make-Up",
|
|
2632
|
+
"name": "Kay Freeborn",
|
|
2633
|
+
"original_name": "Kay Freeborn",
|
|
2634
|
+
"popularity": 0.6,
|
|
2635
|
+
"profile_path": null,
|
|
2636
|
+
},
|
|
2637
|
+
{
|
|
2638
|
+
"adult": false,
|
|
2639
|
+
"credit_id": "5b04c8b40e0a261d80002da1",
|
|
2640
|
+
"department": "Sound",
|
|
2641
|
+
"gender": 0,
|
|
2642
|
+
"id": 1998464,
|
|
2643
|
+
"job": "Sound Editor",
|
|
2644
|
+
"known_for_department": "Sound",
|
|
2645
|
+
"name": "Richard Burrow",
|
|
2646
|
+
"original_name": "Richard Burrow",
|
|
2647
|
+
"popularity": 0.6,
|
|
2648
|
+
"profile_path": null,
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
"adult": false,
|
|
2652
|
+
"credit_id": "5ae3420f0e0a262a52043715",
|
|
2653
|
+
"department": "Art",
|
|
2654
|
+
"gender": 2,
|
|
2655
|
+
"id": 2021319,
|
|
2656
|
+
"job": "Property Master",
|
|
2657
|
+
"known_for_department": "Art",
|
|
2658
|
+
"name": "Frank Bruton",
|
|
2659
|
+
"original_name": "Frank Bruton",
|
|
2660
|
+
"popularity": 0.6,
|
|
2661
|
+
"profile_path": null,
|
|
2662
|
+
},
|
|
2663
|
+
{
|
|
2664
|
+
"adult": false,
|
|
2665
|
+
"credit_id": "5c3f42219251417a60ad5764",
|
|
2666
|
+
"department": "Art",
|
|
2667
|
+
"gender": 2,
|
|
2668
|
+
"id": 2217113,
|
|
2669
|
+
"job": "Draughtsman",
|
|
2670
|
+
"known_for_department": "Art",
|
|
2671
|
+
"name": "Reg Bream",
|
|
2672
|
+
"original_name": "Reg Bream",
|
|
2673
|
+
"popularity": 0.98,
|
|
2674
|
+
"profile_path": null,
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
"adult": false,
|
|
2678
|
+
"credit_id": "5ff37a8067203d003dcbd373",
|
|
2679
|
+
"department": "Sound",
|
|
2680
|
+
"gender": 0,
|
|
2681
|
+
"id": 2922346,
|
|
2682
|
+
"job": "Musician",
|
|
2683
|
+
"known_for_department": "Acting",
|
|
2684
|
+
"name": "London Symphony Orchestra",
|
|
2685
|
+
"original_name": "London Symphony Orchestra",
|
|
2686
|
+
"popularity": 0.6,
|
|
2687
|
+
"profile_path": null,
|
|
2688
|
+
},
|
|
2689
|
+
]
|
|
2690
|
+
`;
|