mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 00:43:12 +01:00
* Refactor getMultiCriterionClause Co-authored-by: Anon247 <61889302+Anon247@users.noreply.github.com>
14 lines
No EOL
277 B
GraphQL
14 lines
No EOL
277 B
GraphQL
query FindStudios($filter: FindFilterType, $studio_filter: StudioFilterType ) {
|
|
findStudios(filter: $filter, studio_filter: $studio_filter) {
|
|
count
|
|
studios {
|
|
...StudioData
|
|
}
|
|
}
|
|
}
|
|
|
|
query FindStudio($id: ID!) {
|
|
findStudio(id: $id) {
|
|
...StudioData
|
|
}
|
|
} |