mirror of https://github.com/stashapp/stash.git
36 lines
311 B
GraphQL
36 lines
311 B
GraphQL
|
fragment ImageData on Image {
|
||
|
id
|
||
|
checksum
|
||
|
title
|
||
|
rating
|
||
|
o_counter
|
||
|
path
|
||
|
|
||
|
file {
|
||
|
size
|
||
|
width
|
||
|
height
|
||
|
}
|
||
|
|
||
|
paths {
|
||
|
thumbnail
|
||
|
image
|
||
|
}
|
||
|
|
||
|
galleries {
|
||
|
...GalleryData
|
||
|
}
|
||
|
|
||
|
studio {
|
||
|
...StudioData
|
||
|
}
|
||
|
|
||
|
tags {
|
||
|
...TagData
|
||
|
}
|
||
|
|
||
|
performers {
|
||
|
...PerformerData
|
||
|
}
|
||
|
}
|