TaxonomyGetNodeByKeyOptions
Log in to add to favouritesPage last updated 13 November 2024
A structure that supports multiple configuration options for requesting taxonomy nodes
Properties
| Name | Type | Description | 
|---|---|---|
| key | string | The taxonomy node key | 
| 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
const node = await client.taxonomy.getNodeByKey("0/1");
console.log(node);const node = await client.taxonomy.getNodeByKey({
  key: "0/1",
  order: "defined",
  childDepth: 10,
  language: "fr-FR",
});
console.log(node);