N+1 query in user model

I have an issue with a N+1 in my User model that I'm not sure how to fix. The method is setup like this: has_many :group_questions, through: :groups, source: :questions has_many :question_partic...