mirror of
https://github.com/stashapp/stash.git
synced 2025-12-10 10:22:18 +01:00
97 lines
1.7 KiB
GraphQL
97 lines
1.7 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 ScrapePerformerList($scraper_id: ID!, $query: String!) {
|
|
scrapePerformerList(scraper_id: $scraper_id, query: $query) {
|
|
...ScrapedPerformerData
|
|
}
|
|
}
|
|
|
|
query ScrapePerformer($scraper_id: ID!, $scraped_performer: ScrapedPerformerInput!) {
|
|
scrapePerformer(scraper_id: $scraper_id, scraped_performer: $scraped_performer) {
|
|
...ScrapedPerformerData
|
|
}
|
|
}
|
|
|
|
query ScrapePerformerURL($url: String!) {
|
|
scrapePerformerURL(url: $url) {
|
|
...ScrapedPerformerData
|
|
}
|
|
}
|
|
|
|
query ScrapeScene($scraper_id: ID!, $scene: SceneUpdateInput!) {
|
|
scrapeScene(scraper_id: $scraper_id, scene: $scene) {
|
|
...ScrapedSceneData
|
|
}
|
|
}
|
|
|
|
query ScrapeSceneURL($url: String!) {
|
|
scrapeSceneURL(url: $url) {
|
|
...ScrapedSceneData
|
|
}
|
|
}
|
|
|
|
query ScrapeGallery($scraper_id: ID!, $gallery: GalleryUpdateInput!) {
|
|
scrapeGallery(scraper_id: $scraper_id, gallery: $gallery) {
|
|
...ScrapedGalleryData
|
|
}
|
|
}
|
|
|
|
query ScrapeGalleryURL($url: String!) {
|
|
scrapeGalleryURL(url: $url) {
|
|
...ScrapedGalleryData
|
|
}
|
|
}
|
|
|
|
query ScrapeMovieURL($url: String!) {
|
|
scrapeMovieURL(url: $url) {
|
|
...ScrapedMovieData
|
|
}
|
|
}
|
|
|
|
query QueryStashBoxScene($input: StashBoxQueryInput!) {
|
|
queryStashBoxScene(input: $input) {
|
|
...ScrapedStashBoxSceneData
|
|
}
|
|
}
|