Limit Page Tree to a specific parent

Hey there,

is it possible to limit the Page Tree to a specific parent page? So that only the parent page and its children show up?

<k-page-tree :current="selected?.value" @select="selected = $event" />

Kind regards,
Patrick

Or if not, how does the items Array/Object has to look like, so I can pass the items to the tree myself (including nested).

Okay I found out that the Page Tree is using:

this.$panel.get("site/tree", { query: { move: this.move ?? null, parent: 'pages/my-page' } });

And defined the parent to my needs and get back an array with the correct subpages, but when using this for the page tree as items-Prop it does not shows up:

<k-page-tree 
    v-if="pages"
    :items="pages"
    :root="false"
/>
...
async mounted() {
   let response = await this.$panel.get("site/tree", { query: { move: null, parent: 'pages/my-page' } });
   this.pages = response;
},

I`m getting no errors or warnings in the console.

@bastianallgeier any ideas to this issue?