mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03: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>
47 lines
407 B
GraphQL
47 lines
407 B
GraphQL
fragment SlimImageData on Image {
|
|
id
|
|
title
|
|
rating100
|
|
organized
|
|
o_counter
|
|
|
|
files {
|
|
...ImageFileData
|
|
}
|
|
|
|
paths {
|
|
thumbnail
|
|
image
|
|
}
|
|
|
|
galleries {
|
|
id
|
|
title
|
|
files {
|
|
path
|
|
}
|
|
folder {
|
|
path
|
|
}
|
|
}
|
|
|
|
studio {
|
|
id
|
|
name
|
|
image_path
|
|
}
|
|
|
|
tags {
|
|
id
|
|
name
|
|
}
|
|
|
|
performers {
|
|
id
|
|
name
|
|
gender
|
|
favorite
|
|
image_path
|
|
}
|
|
}
|