mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* track watchtime and view time * add view count sorting, added continue position filter * display metrics in file info * add toggle for tracking activity * save activity every 10 seconds * reset resume when video is nearly complete * start from beginning when playing scene in queue Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
78 lines
831 B
GraphQL
78 lines
831 B
GraphQL
fragment SceneData on Scene {
|
|
id
|
|
title
|
|
code
|
|
details
|
|
director
|
|
url
|
|
date
|
|
rating100
|
|
o_counter
|
|
organized
|
|
interactive
|
|
interactive_speed
|
|
captions {
|
|
language_code
|
|
caption_type
|
|
}
|
|
created_at
|
|
updated_at
|
|
resume_time
|
|
last_played_at
|
|
play_duration
|
|
play_count
|
|
|
|
files {
|
|
...VideoFileData
|
|
}
|
|
|
|
paths {
|
|
screenshot
|
|
preview
|
|
stream
|
|
webp
|
|
vtt
|
|
sprite
|
|
funscript
|
|
interactive_heatmap
|
|
caption
|
|
}
|
|
|
|
scene_markers {
|
|
...SceneMarkerData
|
|
}
|
|
|
|
galleries {
|
|
...SlimGalleryData
|
|
}
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
movies {
|
|
movie {
|
|
...MovieData
|
|
}
|
|
scene_index
|
|
}
|
|
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
|
|
stash_ids {
|
|
endpoint
|
|
stash_id
|
|
}
|
|
|
|
sceneStreams {
|
|
url
|
|
mime_type
|
|
label
|
|
}
|
|
}
|