stash/ui/v2.5/graphql/data/scene-marker.graphql
dogwithakeyboard 7f8349469a
Scene Marker grid view (#5443)
* add bulk delete mutation
---------
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
2024-11-29 17:02:20 +11:00

38 lines
374 B
GraphQL

fragment SceneMarkerData on SceneMarker {
id
title
seconds
end_seconds
stream
preview
screenshot
scene {
...SceneMarkerSceneData
}
primary_tag {
id
name
}
tags {
id
name
}
}
fragment SceneMarkerSceneData on Scene {
id
title
files {
width
height
path
}
performers {
id
name
image_path
}
}