mirror of
https://github.com/stashapp/stash.git
synced 2025-12-13 20:03:02 +01:00
* Add organized boolean to scene model (#729) * Add organized button to scene page * Add flag to galleries and images * Import/export changes * Make organized flag not null * Ignore organized scenes for autotag Co-authored-by: com1234 <com1234@notarealemail.com>
65 lines
632 B
GraphQL
65 lines
632 B
GraphQL
fragment SceneData on Scene {
|
|
id
|
|
checksum
|
|
oshash
|
|
title
|
|
details
|
|
url
|
|
date
|
|
rating
|
|
o_counter
|
|
organized
|
|
path
|
|
|
|
file {
|
|
size
|
|
duration
|
|
video_codec
|
|
audio_codec
|
|
width
|
|
height
|
|
framerate
|
|
bitrate
|
|
}
|
|
|
|
paths {
|
|
screenshot
|
|
preview
|
|
stream
|
|
webp
|
|
vtt
|
|
chapters_vtt
|
|
}
|
|
|
|
scene_markers {
|
|
...SceneMarkerData
|
|
}
|
|
|
|
gallery {
|
|
...GalleryData
|
|
}
|
|
|
|
studio {
|
|
...StudioData
|
|
}
|
|
|
|
movies {
|
|
movie {
|
|
...MovieData
|
|
}
|
|
scene_index
|
|
}
|
|
|
|
tags {
|
|
...TagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
|
|
stash_ids {
|
|
endpoint
|
|
stash_id
|
|
}
|
|
}
|