TaxonomyResolveChildrenOptions
Log in to add to favouritesDeprecation warning
Taxonomy in entries is deprecated and may be removed from future releases of Contensis. We strongly recommend using content types and entries to categorise content.
A structure that supports multiple configuration options for resolving taxonomy nodes.
Properties
Name | Type | Description |
---|---|---|
key | string | The taxonomy node key. |
node | TaxonomyNode | The taxonomy node. |
order | string | Specifies the order of taxonomy nodes: 'defined' or 'alphabetical' (defaults to 'alphabetical'). |
childDepth | number | The depth of resolved children (defaults to 1). |
language | string | The language code for the retrieved taxonomy nodes. |
Example
ContensisClient.taxonomy.resolveChildren('0/1').then(node => {
console.log("Taxonomy resolveChildren with taxonomy node key:");
console.log(node);
});
ContensisClient.taxonomy.resolveChildren({ key: '0/1', name: '', path: '', hasChildren: true }).then(node => {
console.log("Taxonomy resolveChildren with taxonomy node:");
console.log(node);
});
ContensisClient.taxonomy.resolveChildren({ key: '0/1', order: 'defined', childDepth: 10, language: 'fr-FR' }).then(node => {
console.log("Taxonomy resolveChildren with options and taxonomy node key:");
console.log(node);
});
ContensisClient.taxonomy.resolveChildren({ node: { key: '0/1', name: '', path: '', hasChildren: true }, order: 'defined', childDepth: 99, language: 'fr-FR' }).then(node => {
console.log("Taxonomy resolveChildren with options and taxonomy node:");
console.log(node);
});