mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
* Update apollo client * Overhaul graphql client cache invalidation * Fix tagger studio link display update * Add graphql formatting
26 lines
244 B
GraphQL
26 lines
244 B
GraphQL
fragment MovieData on Movie {
|
|
id
|
|
name
|
|
aliases
|
|
duration
|
|
date
|
|
rating100
|
|
director
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
synopsis
|
|
url
|
|
front_image_path
|
|
back_image_path
|
|
scene_count
|
|
|
|
scenes {
|
|
id
|
|
title
|
|
path
|
|
}
|
|
}
|