mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Fix makeTagFilter mode * Remove studio_tags filter criterion This is handled by studios_filter. The support for this still needs to be added in the UI, so I have removed the criterion options in the short-term. --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
52 lines
739 B
GraphQL
52 lines
739 B
GraphQL
fragment StudioData on Studio {
|
|
id
|
|
name
|
|
url
|
|
parent_studio {
|
|
id
|
|
name
|
|
url
|
|
image_path
|
|
}
|
|
child_studios {
|
|
id
|
|
name
|
|
image_path
|
|
}
|
|
ignore_auto_tag
|
|
image_path
|
|
scene_count
|
|
scene_count_all: scene_count(depth: -1)
|
|
image_count
|
|
image_count_all: image_count(depth: -1)
|
|
gallery_count
|
|
gallery_count_all: gallery_count(depth: -1)
|
|
performer_count
|
|
performer_count_all: performer_count(depth: -1)
|
|
movie_count
|
|
movie_count_all: movie_count(depth: -1)
|
|
stash_ids {
|
|
stash_id
|
|
endpoint
|
|
}
|
|
details
|
|
rating100
|
|
favorite
|
|
aliases
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
}
|
|
|
|
fragment SelectStudioData on Studio {
|
|
id
|
|
name
|
|
aliases
|
|
details
|
|
image_path
|
|
|
|
parent_studio {
|
|
id
|
|
name
|
|
}
|
|
}
|