#import "~/graphql_shared/fragments/label.fragment.graphql" query groupLabels($fullPath: ID!, $searchTerm: String) { workspace: group(fullPath: $fullPath) { id labels(searchTerm: $searchTerm, onlyGroupLabels: true, includeAncestorGroups: true) { nodes { ...Label } } } }