mirror of
https://github.com/stashapp/stash.git
synced 2025-12-14 20:33:16 +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>
32 lines
324 B
GraphQL
32 lines
324 B
GraphQL
fragment GalleryData on Gallery {
|
|
id
|
|
checksum
|
|
path
|
|
title
|
|
date
|
|
url
|
|
details
|
|
rating
|
|
organized
|
|
images {
|
|
...SlimImageData
|
|
}
|
|
cover {
|
|
...SlimImageData
|
|
}
|
|
studio {
|
|
...StudioData
|
|
}
|
|
tags {
|
|
...TagData
|
|
}
|
|
|
|
performers {
|
|
...PerformerData
|
|
}
|
|
scene {
|
|
id
|
|
title
|
|
path
|
|
}
|
|
}
|