mirror of
https://github.com/stashapp/stash.git
synced 2026-01-02 05:32:22 +01:00
* Move loadStickyHeader to src/hooks * intl stashIDs * Scroll to top on component mount * Add id to gallery cover image and tweak merge functions * Add useTitleProps hook * Also scroll to top on list pages * Refactor loaders and tabs * Use classnames * Add DetailImage
49 lines
515 B
GraphQL
49 lines
515 B
GraphQL
fragment SlimGalleryData on Gallery {
|
|
id
|
|
title
|
|
date
|
|
url
|
|
details
|
|
rating100
|
|
organized
|
|
files {
|
|
...GalleryFileData
|
|
}
|
|
folder {
|
|
...FolderData
|
|
}
|
|
image_count
|
|
cover {
|
|
id
|
|
files {
|
|
...ImageFileData
|
|
}
|
|
paths {
|
|
thumbnail
|
|
}
|
|
}
|
|
chapters {
|
|
id
|
|
title
|
|
image_index
|
|
}
|
|
studio {
|
|
id
|
|
name
|
|
image_path
|
|
}
|
|
tags {
|
|
id
|
|
name
|
|
}
|
|
performers {
|
|
id
|
|
name
|
|
gender
|
|
favorite
|
|
image_path
|
|
}
|
|
scenes {
|
|
...SlimSceneData
|
|
}
|
|
}
|