mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
* Add movies and movie_count properties to Performer type Extend the GraphQL API to allow getting the movies and movie count by performer. * Add movies count to performer card * Add movies and movie_count properties to Studio type Extend the GraphQL API to allow getting the movies and movie count by studio. * Add movies count to studio card
41 lines
444 B
GraphQL
41 lines
444 B
GraphQL
fragment PerformerData on Performer {
|
|
id
|
|
checksum
|
|
name
|
|
url
|
|
gender
|
|
twitter
|
|
instagram
|
|
birthdate
|
|
ethnicity
|
|
country
|
|
eye_color
|
|
height
|
|
measurements
|
|
fake_tits
|
|
career_length
|
|
tattoos
|
|
piercings
|
|
aliases
|
|
favorite
|
|
image_path
|
|
scene_count
|
|
image_count
|
|
gallery_count
|
|
movie_count
|
|
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
stash_ids {
|
|
stash_id
|
|
endpoint
|
|
}
|
|
rating
|
|
details
|
|
death_date
|
|
hair_color
|
|
weight
|
|
}
|