mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 18:04:33 +01: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
29 lines
321 B
GraphQL
29 lines
321 B
GraphQL
fragment StudioData on Studio {
|
|
id
|
|
checksum
|
|
name
|
|
url
|
|
parent_studio {
|
|
id
|
|
name
|
|
url
|
|
image_path
|
|
}
|
|
child_studios {
|
|
id
|
|
name
|
|
image_path
|
|
}
|
|
image_path
|
|
scene_count
|
|
image_count
|
|
gallery_count
|
|
movie_count
|
|
stash_ids {
|
|
stash_id
|
|
endpoint
|
|
}
|
|
details
|
|
rating
|
|
aliases
|
|
}
|