Hmmmm I usually have a hierarchy that is something...
# questions
s
Hmmmm I usually have a hierarchy that is something like this:
Copy code
root # includes ![[root.foo]]
↳root.foo # includes ![[root.foo.bar]], ![[root.foo.baz]], ...
 ↳root.foo.bar
 ↳root.foo.baz
Now I learned that I could do
![[root.foo.*]]
but that includes everything in that hierarchy. Is there a way to specify only direct children? Something along the lines of
![[root.foo.*]]
includes direct children (up to the next
.
) and
![[root.foo.**]]
would include all children?