$query = $articles->find()->contain([
'Comments' => [
'Authors' => [
'Profiles' => function ($q) {
return $q->where(['Profiles.author_id' => 'Authors.id', 'Profiles.field' => 'Articles.field']);
}
]
]
]);