Skip to content

{{hasClassificationGroup}}

Block helper that checks whether any classification belonging to the given group is present in a list of classifications. It mirrors hasClassification, but matches on the classification group rather than the classification name — so a template can select or exclude whole groups (for example everything in the Conceptual group) without listing each classification. Group names are matched case-insensitively.

When no classification in the group is found (including when the object has no classifications at all), the optional {{else}} block renders.

{{#hasClassificationGroup classifications "GroupName"}} do something {{else}} do something else {{/hasClassificationGroup}}
{{#hasClassificationGroup classifications "Conceptual"}}
Skip: conceptual objects are not deployed.
{{else}}
CREATE TABLE [{{name}}] ...
{{/hasClassificationGroup}}