mirror of
https://github.com/stashapp/stash.git
synced 2025-12-14 12:25:23 +01:00
* add rating100 fields to represent rating range 1-100 * deprecate existing (1-5) rating fields * add half- and quarter-star options for rating system * add decimal rating system option Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
26 lines
257 B
GraphQL
26 lines
257 B
GraphQL
fragment MovieData on Movie {
|
|
id
|
|
checksum
|
|
name
|
|
aliases
|
|
duration
|
|
date
|
|
rating100
|
|
director
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
synopsis
|
|
url
|
|
front_image_path
|
|
back_image_path
|
|
scene_count
|
|
|
|
scenes {
|
|
id
|
|
title
|
|
path
|
|
}
|
|
}
|