mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
29 lines
293 B
GraphQL
29 lines
293 B
GraphQL
fragment GallerySlimData on Gallery {
|
|
id
|
|
checksum
|
|
path
|
|
title
|
|
date
|
|
url
|
|
details
|
|
rating
|
|
image_count
|
|
cover {
|
|
...SlimImageData
|
|
}
|
|
studio {
|
|
...StudioData
|
|
}
|
|
tags {
|
|
...TagData
|
|
}
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
scene {
|
|
id
|
|
title
|
|
path
|
|
}
|
|
}
|