Home > @tridion-sites/open-api-client > DeleteTaxonomyNodeMode
Specifies what will happen to the child nodes of a Taxonomy node after that node’s deletion.
Members: * DeleteBranch
- Specifies that the entire branch of descendant nodes will be deleted, excluding nodes in child Publications.
* DeleteBranchIncludeChildPublications
- Specifies that the entire branch of descendants will be deleted, including nodes in child Publications.
* RemoveParentFromChildren
- Specifies that the deleted node will be removed from the children’s parents. Children will become root if they have no other parents. If the children have other parents, those parents are preserved.
* AssignChildrenToGrandparents
- Specifies that the parents of the deleted node adopt the deleted node’s children. If the children have other parents, those parents are preserved.
Signature:
export declare enum DeleteTaxonomyNodeMode
Member | Value | Description |
---|---|---|
ASSIGN_CHILDREN_TO_GRANDPARENTS | "AssignChildrenToGrandparents" |
|
DELETE_BRANCH | "DeleteBranch" |
|
DELETE_BRANCH_INCLUDE_CHILD_PUBLICATIONS | "DeleteBranchIncludeChildPublications" |
|
REMOVE_PARENT_FROM_CHILDREN | "RemoveParentFromChildren" |