mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
* Do database txn in same thread. Retry on locked db * Remove captions from slimscenedata * Fix tracing * Use where in instead of individual selects * Remove scenes_query view * Remove image query view * Remove gallery query view * Use where in for FindMany * Don't interrupt scanning zip files * Fix image filesize sort
75 lines
710 B
GraphQL
75 lines
710 B
GraphQL
fragment SlimSceneData on Scene {
|
|
id
|
|
title
|
|
details
|
|
url
|
|
date
|
|
rating
|
|
o_counter
|
|
organized
|
|
interactive
|
|
interactive_speed
|
|
|
|
files {
|
|
...VideoFileData
|
|
}
|
|
|
|
paths {
|
|
screenshot
|
|
preview
|
|
stream
|
|
webp
|
|
vtt
|
|
chapters_vtt
|
|
sprite
|
|
funscript
|
|
interactive_heatmap
|
|
caption
|
|
}
|
|
|
|
scene_markers {
|
|
id
|
|
title
|
|
seconds
|
|
}
|
|
|
|
galleries {
|
|
id
|
|
path
|
|
title
|
|
}
|
|
|
|
studio {
|
|
id
|
|
name
|
|
image_path
|
|
}
|
|
|
|
movies {
|
|
movie {
|
|
id
|
|
name
|
|
front_image_path
|
|
}
|
|
scene_index
|
|
}
|
|
|
|
tags {
|
|
id
|
|
name
|
|
}
|
|
|
|
performers {
|
|
id
|
|
name
|
|
gender
|
|
favorite
|
|
image_path
|
|
}
|
|
|
|
stash_ids {
|
|
endpoint
|
|
stash_id
|
|
}
|
|
}
|