Ok, I get a list of parents with the following aggregation, but it is not a hierarchy:
[
{
$graphLookup:
{
from: "directory",
startWith: "$parentDirectory.$id",
connectFromField: "parentDirectory.$id",
connectToField: "_id",
as: "parents"
}
}
]