mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
25 lines
236 B
GraphQL
25 lines
236 B
GraphQL
fragment MovieData on Movie {
|
|
id
|
|
name
|
|
aliases
|
|
duration
|
|
date
|
|
rating100
|
|
director
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
synopsis
|
|
urls
|
|
front_image_path
|
|
back_image_path
|
|
scene_count
|
|
|
|
scenes {
|
|
id
|
|
title
|
|
}
|
|
}
|