Movie/Group tags (#4969)

* Combine common tag control code into hook
* Combine common scraped tag row code into hook
This commit is contained in:
WithoutPants
2024-06-18 11:24:15 +10:00
committed by GitHub
parent f9a624b803
commit fda4776d30
63 changed files with 1586 additions and 450 deletions

View File

@@ -11,6 +11,10 @@ fragment MovieData on Movie {
...SlimStudioData
}
tags {
...SlimTagData
}
synopsis
urls
front_image_path

View File

@@ -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 {

View File

@@ -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