mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Movie/Group tags (#4969)
* Combine common tag control code into hook * Combine common scraped tag row code into hook
This commit is contained in:
@@ -11,6 +11,10 @@ fragment MovieData on Movie {
|
||||
...SlimStudioData
|
||||
}
|
||||
|
||||
tags {
|
||||
...SlimTagData
|
||||
}
|
||||
|
||||
synopsis
|
||||
urls
|
||||
front_image_path
|
||||
|
||||
@@ -98,6 +98,9 @@ fragment ScrapedMovieData on ScrapedMovie {
|
||||
studio {
|
||||
...ScrapedMovieStudioData
|
||||
}
|
||||
tags {
|
||||
...ScrapedSceneTagData
|
||||
}
|
||||
}
|
||||
|
||||
fragment ScrapedSceneMovieData on ScrapedMovie {
|
||||
@@ -116,6 +119,9 @@ fragment ScrapedSceneMovieData on ScrapedMovie {
|
||||
studio {
|
||||
...ScrapedMovieStudioData
|
||||
}
|
||||
tags {
|
||||
...ScrapedSceneTagData
|
||||
}
|
||||
}
|
||||
|
||||
fragment ScrapedSceneStudioData on ScrapedStudio {
|
||||
|
||||
@@ -16,6 +16,8 @@ fragment TagData on Tag {
|
||||
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)
|
||||
|
||||
parents {
|
||||
...SlimTagData
|
||||
|
||||
Reference in New Issue
Block a user