mirror of
https://github.com/stashapp/stash.git
synced 2025-12-08 17:35:40 +01:00
* Don't set image title to filename in graphql * Remove deprecated files field from image fragments
40 lines
398 B
GraphQL
40 lines
398 B
GraphQL
fragment ImageData on Image {
|
|
id
|
|
title
|
|
code
|
|
rating100
|
|
date
|
|
urls
|
|
details
|
|
photographer
|
|
organized
|
|
o_counter
|
|
created_at
|
|
updated_at
|
|
|
|
paths {
|
|
thumbnail
|
|
preview
|
|
image
|
|
}
|
|
|
|
galleries {
|
|
...GalleryData
|
|
}
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
|
|
visual_files {
|
|
...VisualFileData
|
|
}
|
|
}
|