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>
32 lines
354 B
GraphQL
32 lines
354 B
GraphQL
fragment GalleryData on Gallery {
|
|
id
|
|
checksum
|
|
path
|
|
created_at
|
|
updated_at
|
|
title
|
|
date
|
|
url
|
|
details
|
|
rating
|
|
organized
|
|
images {
|
|
...SlimImageData
|
|
}
|
|
cover {
|
|
...SlimImageData
|
|
}
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
scenes {
|
|
...SlimSceneData
|
|
}
|
|
}
|