mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
* Studio image and parent studio support in scene tagger * Refactor studio backend and add studio tagger --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
121 lines
2 KiB
GraphQL
121 lines
2 KiB
GraphQL
query ListPerformerScrapers {
|
|
listPerformerScrapers {
|
|
id
|
|
name
|
|
performer {
|
|
urls
|
|
supported_scrapes
|
|
}
|
|
}
|
|
}
|
|
|
|
query ListSceneScrapers {
|
|
listSceneScrapers {
|
|
id
|
|
name
|
|
scene {
|
|
urls
|
|
supported_scrapes
|
|
}
|
|
}
|
|
}
|
|
|
|
query ListGalleryScrapers {
|
|
listGalleryScrapers {
|
|
id
|
|
name
|
|
gallery {
|
|
urls
|
|
supported_scrapes
|
|
}
|
|
}
|
|
}
|
|
|
|
query ListMovieScrapers {
|
|
listMovieScrapers {
|
|
id
|
|
name
|
|
movie {
|
|
urls
|
|
supported_scrapes
|
|
}
|
|
}
|
|
}
|
|
|
|
query ScrapeSingleStudio(
|
|
$source: ScraperSourceInput!
|
|
$input: ScrapeSingleStudioInput!
|
|
) {
|
|
scrapeSingleStudio(source: $source, input: $input) {
|
|
...ScrapedStudioData
|
|
}
|
|
}
|
|
|
|
query ScrapeSinglePerformer(
|
|
$source: ScraperSourceInput!
|
|
$input: ScrapeSinglePerformerInput!
|
|
) {
|
|
scrapeSinglePerformer(source: $source, input: $input) {
|
|
...ScrapedPerformerData
|
|
}
|
|
}
|
|
|
|
query ScrapeMultiPerformers(
|
|
$source: ScraperSourceInput!
|
|
$input: ScrapeMultiPerformersInput!
|
|
) {
|
|
scrapeMultiPerformers(source: $source, input: $input) {
|
|
...ScrapedPerformerData
|
|
}
|
|
}
|
|
|
|
query ScrapePerformerURL($url: String!) {
|
|
scrapePerformerURL(url: $url) {
|
|
...ScrapedPerformerData
|
|
}
|
|
}
|
|
|
|
query ScrapeSingleScene(
|
|
$source: ScraperSourceInput!
|
|
$input: ScrapeSingleSceneInput!
|
|
) {
|
|
scrapeSingleScene(source: $source, input: $input) {
|
|
...ScrapedSceneData
|
|
}
|
|
}
|
|
|
|
query ScrapeMultiScenes(
|
|
$source: ScraperSourceInput!
|
|
$input: ScrapeMultiScenesInput!
|
|
) {
|
|
scrapeMultiScenes(source: $source, input: $input) {
|
|
...ScrapedSceneData
|
|
}
|
|
}
|
|
|
|
query ScrapeSceneURL($url: String!) {
|
|
scrapeSceneURL(url: $url) {
|
|
...ScrapedSceneData
|
|
}
|
|
}
|
|
|
|
query ScrapeSingleGallery(
|
|
$source: ScraperSourceInput!
|
|
$input: ScrapeSingleGalleryInput!
|
|
) {
|
|
scrapeSingleGallery(source: $source, input: $input) {
|
|
...ScrapedGalleryData
|
|
}
|
|
}
|
|
|
|
query ScrapeGalleryURL($url: String!) {
|
|
scrapeGalleryURL(url: $url) {
|
|
...ScrapedGalleryData
|
|
}
|
|
}
|
|
|
|
query ScrapeMovieURL($url: String!) {
|
|
scrapeMovieURL(url: $url) {
|
|
...ScrapedMovieData
|
|
}
|
|
}
|