mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 21:04:37 +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>
35 lines
334 B
GraphQL
35 lines
334 B
GraphQL
fragment ImageData on Image {
|
|
id
|
|
title
|
|
rating100
|
|
organized
|
|
o_counter
|
|
created_at
|
|
updated_at
|
|
|
|
files {
|
|
...ImageFileData
|
|
}
|
|
|
|
paths {
|
|
thumbnail
|
|
image
|
|
}
|
|
|
|
galleries {
|
|
...GalleryData
|
|
}
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
}
|