Adressing a special directory

Instead of $pages->children()->children-> I want to address a special directory called edition. What is the notation like?

Do you know where it is exactly located (e.g. news/blog/edition) or should it be a solution to find a page/directory called edition as a child of just any other page?

If you want to find it from anywhere, you could do the following:

$site->index()->findBy('uid','edition');

I know exactly its location. Thank you.

Thank you, too. Some day I will need this.

Then you could just use page('path/to/edition')->…