There is a guarantee that the user will exist ,why is why I want to prevent that extra db query.
When I try to do enable relationship loading ,I get the error :
Scoped session has no attribute enable relationship loading.
class User(Dictifiable, db.Model, UserMixin):
__tablename__ = 'user'
id = Column(Integer, Sequence('user_id_seq'), primary_key=True)
full_name = Column(String(50))