mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
* Remove unnecessary graphql fields * Optimise joined queries * Tag resolver query optimisation
30 lines
328 B
GraphQL
30 lines
328 B
GraphQL
fragment GalleryData on Gallery {
|
|
id
|
|
checksum
|
|
path
|
|
title
|
|
date
|
|
url
|
|
details
|
|
rating
|
|
organized
|
|
images {
|
|
...SlimImageData
|
|
}
|
|
cover {
|
|
...SlimImageData
|
|
}
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
scenes {
|
|
...SlimSceneData
|
|
}
|
|
}
|