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 REST API is based on hybrid properties like the user_email defined in the DbNode table in SQLA.
This allows us to create queries where we may project node properties and also the user_email and implicitly to do the join of the DbNode with the DbUser to provide the user email.
This is a nice feature but it is a feature that it is defined at the SQLA model (not in the Django model) and we should not make assumptions that such feature exist at the REST API which is a few levels above the backends.
In general the REST API queries should change from
Currently REST API is based on hybrid properties like the user_email defined in the DbNode table in SQLA.
This allows us to create queries where we may project node properties and also the user_email and implicitly to do the join of the DbNode with the DbUser to provide the user email.
This is a nice feature but it is a feature that it is defined at the SQLA model (not in the Django model) and we should not make assumptions that such feature exist at the REST API which is a few levels above the backends.
In general the REST API queries should change from
to
This issue became visible after the removal of the dummy_model (for the querying of Django backrend). Work which is done to support JSONB in Djnago
The text was updated successfully, but these errors were encountered: