mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Add UI support for setting containing groups * Show containing groups in group details panel * Move tag hierarchical filter code into separate type * Add depth to scene_count and add sub_group_count * Add sub-groups tab to groups page * Add containing groups to edit groups dialog * Show containing group description in sub-group view * Show group scene number in group scenes view * Add ability to drag move grid cards * Add sub group order option * Add reorder sub-groups interface * Separate page size selector component * Add interfaces to add and remove sub-groups to a group * Separate MultiSet components * Allow setting description while setting containing groups
38 lines
463 B
GraphQL
38 lines
463 B
GraphQL
fragment GroupData on Group {
|
|
id
|
|
name
|
|
aliases
|
|
duration
|
|
date
|
|
rating100
|
|
director
|
|
|
|
studio {
|
|
...SlimStudioData
|
|
}
|
|
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
|
|
containing_groups {
|
|
group {
|
|
...SlimGroupData
|
|
}
|
|
description
|
|
}
|
|
|
|
synopsis
|
|
urls
|
|
front_image_path
|
|
back_image_path
|
|
scene_count
|
|
scene_count_all: scene_count(depth: -1)
|
|
sub_group_count
|
|
sub_group_count_all: sub_group_count(depth: -1)
|
|
|
|
scenes {
|
|
id
|
|
title
|
|
}
|
|
}
|