stash/graphql/documents/data/gallery-slim.graphql
DingDongSoLong4 7b77b8986f
Overhaul graphql client cache invalidation (#3912)
* Update apollo client
* Overhaul graphql client cache invalidation
* Fix tagger studio link display update
* Add graphql formatting
2023-07-28 10:36:00 +10:00

49 lines
509 B
GraphQL

fragment SlimGalleryData on Gallery {
id
title
date
url
details
rating100
organized
files {
...GalleryFileData
}
folder {
...FolderData
}
image_count
cover {
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
}
}