You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to avoid using select * statement and define all columns explicitly.
Motivation
It will not break backward compatibility in the cases when we add new column. So backend will fetch only known columns and integration tests will preserve to work
This approach opens an ability to manage columns dynamically via feature flags and allows us to use extend pattern when we need to switch over different columns in real time
We need to avoid using select * statement and define all columns explicitly.
Motivation
Here is an example of framework which is using this approach https://entgo.io/docs/schema-def/
The text was updated successfully, but these errors were encountered: