Search for Movies, Tv Shows, Actors with basic graphql around TMDBSimple library for python
Search movie, person, show using an id.
Search with user specified input.
note: make sure to have The Movie DB Api Key. Get it Here
Check the link Here
copy paste this example in the graphiql viewer.
query {
movie(id:603) {
title
tagline
overview
revenue
budget
belongsToCollection {
name
}
credits {
cast {
name
character
}
}
}
tvseries(tvId:1399) {
name
overview
numberOfEpisodes
numberOfSeasons
credits {
cast {
name
character
}
}
}
person(id: 6384) {
name
biography
placeOfBirth
birthday
credits {
cast {
title
character
}
}
}
search(searchString: "007") {
id
titleName
overview
mediaType
}
}