mirror of
https://github.com/stashapp/stash.git
synced 2025-12-15 21:03:22 +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>
44 lines
369 B
GraphQL
44 lines
369 B
GraphQL
fragment SlimImageData on Image {
|
|
id
|
|
checksum
|
|
title
|
|
rating
|
|
organized
|
|
o_counter
|
|
path
|
|
|
|
file {
|
|
size
|
|
width
|
|
height
|
|
}
|
|
|
|
paths {
|
|
thumbnail
|
|
image
|
|
}
|
|
|
|
galleries {
|
|
id
|
|
path
|
|
title
|
|
}
|
|
|
|
studio {
|
|
id
|
|
name
|
|
image_path
|
|
}
|
|
|
|
tags {
|
|
id
|
|
name
|
|
}
|
|
|
|
performers {
|
|
id
|
|
name
|
|
favorite
|
|
image_path
|
|
}
|
|
}
|