I have two tables, where one table has the ID of the other. 1:1 relation. So something like
EventFeedback
somePrimaryKey
userEventID
UserEvent
userEventID
Sequalize has the relation defined with
models.UserEvent.hasOne(models.EventFeedback, { foreignKey: 'userEventID' });
I need all entries in UserEvent that do not have an entry in EventFeedback, which is an exclusionary join.
Stealing images from this article because they have nice individual images: 
They even give example code!
SELECT <select_list>
FROM Table_A A
LEFT JOIN Table_B B
ON A.Key = B.Key
WHERE B.Key IS NULL
How do I do this in sequelize? Do I just need to do a left join and process it manually?