interface HierarchyFields {
    ancestorIds: string[];
    ancestorNamePath: string;
    childrenCount: number;
    depth: number;
    parentId: null | string;
}

Hierarchy (view full)

Properties

ancestorIds: string[]

The ancestor organization IDs (in order from root to this organization)

ancestorNamePath: string

The ancestor organization name path (comma separated name path, starting from root)

childrenCount: number

The number of children this organization has

depth: number

The depth that this organization is in the tree

parentId: null | string

The parent organization's ID

Generated using TypeDoc