mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 01:44:52 +01:00
* Add movie migration * Update server and UI code for type changes * Add studio to movies * Movie blobs to end * Document movie duration * Add filtering on movie studio
14 lines
No EOL
265 B
GraphQL
14 lines
No EOL
265 B
GraphQL
query FindMovies($filter: FindFilterType, $movie_filter: MovieFilterType) {
|
|
findMovies(filter: $filter, movie_filter: $movie_filter) {
|
|
count
|
|
movies {
|
|
...MovieData
|
|
}
|
|
}
|
|
}
|
|
|
|
query FindMovie($id: ID!) {
|
|
findMovie(id: $id) {
|
|
...MovieData
|
|
}
|
|
} |