TypeORM supports the Adjacency list and Closure table patterns for storing tree structures. To learn more about hierarchy table take a look at this awesome presentation by Bill Karwin.
Adjacency list
Adjacency list is a simple model with self-referencing. The benefit of this approach is simplicity, drawback is that you can't load big trees in all at once because of join limitations. To learn more about the benefits and use of Adjacency Lists look at this article by Matthew Schinckel. Example:
Nested set is another pattern of storing tree structures in the database. Its very efficient for reads, but bad for writes. You cannot have multiple roots in nested set. Example:
You can specify closure table name and / or closure table columns names by setting optional parameter options into @Tree("closure-table", options). ancestorColumnName and descandantColumnName are callback functions, which receive primary column's metadata and return column's name.
Updating or removing a component's parent has not been implemented yet (see this issue). The closure table will need to be explicitly updated to do either of these operations.
Working with tree entities
To make bind tree entities to each other its important to set to children entities their parent and save them, for example:
There are other special methods to work with tree entities through TreeRepository:
findTrees - Returns all trees in the database with all their children, children of children, etc.
const treeCategories = await repository.findTrees();
// returns root categories with sub categories inside
findRoots - Roots are entities that have no ancestors. Finds them all.
Does not load children leafs.
const rootCategories = await repository.findRoots();
// returns root categories without sub categories inside
findDescendants - Gets all children (descendants) of the given entity. Returns them all in a flat array.
const children = await repository.findDescendants(parentCategory);
// returns all direct subcategories (without its nested categories) of a parentCategory
findDescendantsTree - Gets all children (descendants) of the given entity. Returns them in a tree - nested into each other.
const childrenTree = await repository.findDescendantsTree(parentCategory);
// returns all direct subcategories (with its nested categories) of a parentCategory
createDescendantsQueryBuilder - Creates a query builder used to get descendants of the entities in a tree.