mirror of
https://github.com/stashapp/stash.git
synced 2025-12-14 20:33:16 +01:00
30 lines
316 B
GraphQL
30 lines
316 B
GraphQL
fragment GalleryData on Gallery {
|
|
id
|
|
checksum
|
|
path
|
|
title
|
|
date
|
|
url
|
|
details
|
|
rating
|
|
organized
|
|
images {
|
|
...SlimImageData
|
|
}
|
|
cover {
|
|
...SlimImageData
|
|
}
|
|
studio {
|
|
...StudioData
|
|
}
|
|
tags {
|
|
...TagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
scenes {
|
|
...SceneData
|
|
}
|
|
}
|