26 lines
321 B
GraphQL
26 lines
321 B
GraphQL
query getPopular {
|
|
results: getPopular {
|
|
movies {
|
|
id
|
|
tmdbId
|
|
title
|
|
releaseDate
|
|
posterPath
|
|
overview
|
|
runtime
|
|
voteAverage
|
|
}
|
|
|
|
tvShows {
|
|
id
|
|
tmdbId
|
|
title
|
|
releaseDate
|
|
posterPath
|
|
overview
|
|
runtime
|
|
voteAverage
|
|
}
|
|
}
|
|
}
|