mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
* Add new query interface * Refactor query builder * Change Query interface * Return duration and filesize in scene query * Adjust UI for scene metadata * Introduce new image query interface * Change image Query interface * Add megapixels and size to image query * Update image UI Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
16 lines
381 B
GraphQL
16 lines
381 B
GraphQL
query FindImages($filter: FindFilterType, $image_filter: ImageFilterType, $image_ids: [Int!]) {
|
|
findImages(filter: $filter, image_filter: $image_filter, image_ids: $image_ids) {
|
|
count
|
|
megapixels
|
|
filesize
|
|
images {
|
|
...SlimImageData
|
|
}
|
|
}
|
|
}
|
|
|
|
query FindImage($id: ID!, $checksum: String) {
|
|
findImage(id: $id, checksum: $checksum) {
|
|
...ImageData
|
|
}
|
|
}
|