Hi @aram, I am afraid you are incorrect here.
Whilst you are correct about it not being a regex (* on its own is an invalid regex), path "*" does match every possible path.
This is because * matches any number of any characters, provided it appears at the end of the path, as it does here.
Matching any first level path would be path "+".