mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Feat(#1401): Show all performers from group's scenes on group detail * Add Groups criterion to performers --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
40 lines
531 B
GraphQL
40 lines
531 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)
|
|
performer_count
|
|
performer_count_all: performer_count(depth: -1)
|
|
sub_group_count
|
|
sub_group_count_all: sub_group_count(depth: -1)
|
|
|
|
scenes {
|
|
id
|
|
title
|
|
}
|
|
}
|