mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 09:53:40 +01:00
* Add bulk stash-box performer task * Add stash-box performer scraper to scrape with menu
103 lines
1.9 KiB
GraphQL
103 lines
1.9 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: StashBoxSceneQueryInput!) {
|
|
queryStashBoxScene(input: $input) {
|
|
...ScrapedStashBoxSceneData
|
|
}
|
|
}
|
|
|
|
query QueryStashBoxPerformer($input: StashBoxPerformerQueryInput!) {
|
|
queryStashBoxPerformer(input: $input) {
|
|
...ScrapedStashBoxPerformerData
|
|
}
|
|
}
|