mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
* Backend changes - ported from scene impl * Front end changes * Refactor URL mutation code
42 lines
402 B
GraphQL
42 lines
402 B
GraphQL
fragment ImageData on Image {
|
|
id
|
|
title
|
|
rating100
|
|
date
|
|
urls
|
|
organized
|
|
o_counter
|
|
created_at
|
|
updated_at
|
|
|
|
files {
|
|
...ImageFileData
|
|
}
|
|
|
|
paths {
|
|
thumbnail
|
|
preview
|
|
image
|
|
}
|
|
|
|
galleries {
|
|
...GalleryData
|
|
}
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
|
|
visual_files {
|
|
...VisualFileData
|
|
}
|
|
}
|