Can you edit a relation from within a relation? I have pages > questions > answers

Hey, I want to be able to edit a page. Then see the questions which are related to that page and edit them. I can do that via:

public static function getRelations(): array
{
return [
RelationManagers\QuestionRelationManager::class,
];
}

But then I want to have the answers which are related to that question, also be editable.

Is such a thing possible? Edit a relation of a relation?
Was this page helpful?