mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* add bulk delete mutation --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
38 lines
374 B
GraphQL
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
|
|
}
|
|
}
|