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
Currently the get method is inelegant at best. It first prepares a SQLQuery, then executes the query, sometimes prepares the result, converts the result to jsonapi format, then inflates the result.
It would be nice to organize this method into an Algorithm pattern that utilizes hooks along the way to allow subclasses to alter the results, rather than having to rewrite the method every time.
The text was updated successfully, but these errors were encountered:
Currently the
get
method is inelegant at best. It first prepares a SQLQuery, then executes the query, sometimes prepares the result, converts the result to jsonapi format, then inflates the result.It would be nice to organize this method into an Algorithm pattern that utilizes hooks along the way to allow subclasses to alter the results, rather than having to rewrite the method every time.
The text was updated successfully, but these errors were encountered: