Repeater in repeater eager load

It's possible to eager load nested relationship, like Question hasMany Answers and Answer HasMany Tags and all load in editView like :
// .......
Repeater::make('answers')
    ->relationship()
    ->schema([
        Repeater::make('tags')
            ->relationship()
            ->schema([
                TextInput::make('name'),
            ])
// ......

If I modify
return parent::getEloquentQuery()->with('answers.tags');

its loads answers and tags in eagerload and still for each answers query's tags and total is 309 selects..
Was this page helpful?