mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 01:44:52 +01:00
* Exposed created_at and updated_at dates on the detail panels for images and scenes * Add fields to gallery page * Internationalisation Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
38 lines
357 B
GraphQL
38 lines
357 B
GraphQL
fragment ImageData on Image {
|
|
id
|
|
checksum
|
|
title
|
|
rating
|
|
organized
|
|
o_counter
|
|
path
|
|
created_at
|
|
updated_at
|
|
|
|
file {
|
|
size
|
|
width
|
|
height
|
|
}
|
|
|
|
paths {
|
|
thumbnail
|
|
image
|
|
}
|
|
|
|
galleries {
|
|
...GalleryData
|
|
}
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
}
|