mirror of https://github.com/stashapp/stash.git
39 lines
408 B
GraphQL
39 lines
408 B
GraphQL
fragment GalleryData on Gallery {
|
|
id
|
|
created_at
|
|
updated_at
|
|
title
|
|
date
|
|
url
|
|
details
|
|
rating
|
|
organized
|
|
|
|
files {
|
|
...GalleryFileData
|
|
}
|
|
folder {
|
|
...FolderData
|
|
}
|
|
|
|
images {
|
|
...SlimImageData
|
|
}
|
|
cover {
|
|
...SlimImageData
|
|
}
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
scenes {
|
|
...SlimSceneData
|
|
}
|
|
}
|