mirror of
https://github.com/stashapp/stash.git
synced 2026-04-28 09:55:05 +02:00
24 lines
236 B
GraphQL
24 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
|
|
}
|
|
}
|