mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
49 lines
516 B
GraphQL
49 lines
516 B
GraphQL
fragment SlimGalleryData on Gallery {
|
|
id
|
|
title
|
|
date
|
|
urls
|
|
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
|
|
}
|
|
}
|