Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

property Hierarchy.folder : str | None

The hierarchy folder.

Example

>>> table = session.create_table("Example", data_types={"Product": "String"})
>>> cube = session.create_cube(table)
>>> hierarchy = cube.hierarchies["Product"]
By convention, the \ separator denotes nesting:
>>> hierarchy.folder = r"some\sub\folder"
>>> print(hierarchy.folder)
some\sub\folder
>>> del hierarchy.folder
>>> print(hierarchy.folder)
None