const users = await User .query() .preload('posts', (postsQuery) => { postsQuery.preload('comments', (commentsQuery) => { commentsQuery.preload('user') }) })