Get Child of Child Pages in custom Menu

You can do what you need to with the wp_list_pages() function:

<?php
wp_list_pages(
    [
        'child_of'    => 92,
        'title_li'    => false,
        'sort_column' => 'menu_order',
    ]
);
?>