mirror of
https://github.com/stashapp/stash.git
synced 2025-12-15 12:52:38 +01:00
* Add default gallery image * Add gallery cover URL path * Use new cover URL in UI * Hide gallery preview scrubber when gallery has no images * Don't try to show lightbox for gallery without images * Ignore unrelated lint issue
46 lines
478 B
GraphQL
46 lines
478 B
GraphQL
fragment SlimGalleryData on Gallery {
|
|
id
|
|
title
|
|
code
|
|
date
|
|
urls
|
|
details
|
|
photographer
|
|
rating100
|
|
organized
|
|
files {
|
|
...GalleryFileData
|
|
}
|
|
folder {
|
|
...FolderData
|
|
}
|
|
image_count
|
|
chapters {
|
|
id
|
|
title
|
|
image_index
|
|
}
|
|
studio {
|
|
id
|
|
name
|
|
image_path
|
|
}
|
|
tags {
|
|
id
|
|
name
|
|
}
|
|
performers {
|
|
id
|
|
name
|
|
gender
|
|
favorite
|
|
image_path
|
|
}
|
|
scenes {
|
|
...SlimSceneData
|
|
}
|
|
paths {
|
|
cover
|
|
preview
|
|
}
|
|
}
|