mirror of
https://github.com/stashapp/stash.git
synced 2025-12-22 00:06:29 +01:00
79 lines
No EOL
1.2 KiB
GraphQL
79 lines
No EOL
1.2 KiB
GraphQL
query ListPerformerScrapers {
|
|
listPerformerScrapers {
|
|
id
|
|
name
|
|
performer {
|
|
urls
|
|
supported_scrapes
|
|
}
|
|
}
|
|
}
|
|
|
|
# query ListSceneScrapers {
|
|
# listSceneScrapers {
|
|
# id
|
|
# name
|
|
# scene {
|
|
# urls
|
|
# supported_scrapes
|
|
# }
|
|
# }
|
|
# }
|
|
|
|
query ScrapePerformerList($scraper_id: ID!, $query: String!) {
|
|
scrapePerformerList(scraper_id: $scraper_id, query: $query) {
|
|
name
|
|
url
|
|
birthdate
|
|
ethnicity
|
|
country
|
|
eye_color
|
|
height
|
|
measurements
|
|
fake_tits
|
|
career_length
|
|
tattoos
|
|
piercings
|
|
aliases
|
|
}
|
|
}
|
|
|
|
query ScrapePerformer($scraper_id: ID!, $scraped_performer: ScrapedPerformerInput!) {
|
|
scrapePerformer(scraper_id: $scraper_id, scraped_performer: $scraped_performer) {
|
|
name
|
|
url
|
|
twitter
|
|
instagram
|
|
birthdate
|
|
ethnicity
|
|
country
|
|
eye_color
|
|
height
|
|
measurements
|
|
fake_tits
|
|
career_length
|
|
tattoos
|
|
piercings
|
|
aliases
|
|
}
|
|
}
|
|
|
|
query ScrapePerformerURL($url: String!) {
|
|
scrapePerformerURL(url: $url) {
|
|
name
|
|
url
|
|
twitter
|
|
instagram
|
|
birthdate
|
|
ethnicity
|
|
country
|
|
eye_color
|
|
height
|
|
measurements
|
|
fake_tits
|
|
career_length
|
|
tattoos
|
|
piercings
|
|
aliases
|
|
}
|
|
} |