CategoryTreeDescendants
Return all descendants from a category tree column.
Overview
See the CategoryTree column for usage examples.
The descendants are the recursive children of a given category. So, given the following tree:
``` Root/ ├─ Sub/ │ ├─ Sub Sub/ │ │ ├─ Sub Sub Sub/ ├─ Another Child/
The descendants of Root
are ["Sub", "Sub Sub", "Sub Sub Sub", "Another Child"]
.
category_tree_column_name
Required
The name of the category tree column we are connected to.