stash/ui/v2.5/graphql/data/gallery.graphql

52 lines
544 B
GraphQL

fragment GalleryData on Gallery {
id
created_at
updated_at
title
code
date
urls
details
photographer
rating100
organized
files {
...GalleryFileData
}
folder {
...FolderData
}
chapters {
...GalleryChapterData
}
cover {
...SlimImageData
}
studio {
...SlimStudioData
}
tags {
...SlimTagData
}
performers {
...PerformerData
}
scenes {
...SlimSceneData
}
}
fragment SelectGalleryData on Gallery {
id
title
files {
path
}
folder {
path
}
}