mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Add tags to studios (#4858)
* 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>
This commit is contained in:
@@ -12,4 +12,8 @@ fragment SlimStudioData on Studio {
|
||||
details
|
||||
rating100
|
||||
aliases
|
||||
tags {
|
||||
id
|
||||
name
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,6 +33,9 @@ fragment StudioData on Studio {
|
||||
rating100
|
||||
favorite
|
||||
aliases
|
||||
tags {
|
||||
...SlimTagData
|
||||
}
|
||||
}
|
||||
|
||||
fragment SelectStudioData on Studio {
|
||||
|
||||
@@ -16,6 +16,8 @@ fragment TagData on Tag {
|
||||
gallery_count_all: gallery_count(depth: -1)
|
||||
performer_count
|
||||
performer_count_all: performer_count(depth: -1)
|
||||
studio_count
|
||||
studio_count_all: studio_count(depth: -1)
|
||||
movie_count
|
||||
movie_count_all: movie_count(depth: -1)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user