mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 09:53:40 +01:00
* Remove unnecessary graphql fields * Optimise joined queries * Tag resolver query optimisation
36 lines
331 B
GraphQL
36 lines
331 B
GraphQL
fragment ImageData on Image {
|
|
id
|
|
checksum
|
|
title
|
|
rating
|
|
organized
|
|
o_counter
|
|
path
|
|
|
|
file {
|
|
size
|
|
width
|
|
height
|
|
}
|
|
|
|
paths {
|
|
thumbnail
|
|
image
|
|
}
|
|
|
|
galleries {
|
|
...GalleryData
|
|
}
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
}
|