What would be the equivalent sequalize code for the given Query?

SELECT * FROM tutor_bank_details tbd inner join tutors t on t.id=tbd.tutorId inner join users u on u.id=t.userId where u.orgId=1

I want where condition in WHERE clause not in JOIN Condition