Actions
Task #129
openupdate deprecated sqlAlchemy query method
Status:
New
Priority:
Low
Assignee:
-
Target version:
-
Start date:
04/04/2026
Due date:
% Done:
0%
Estimated time:
Engineering Effort:
small
App Component:
Database
Feature:
Description
query(...).get(id) is legacy. Modern SQLAlchemy prefers session.get(model_class, id). Current code will function but is forward-incompatible.
The most clear examples are in the BaseRepository and UserOwnedRepository , but there are 64 total examples across the entire project.
Actions