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
I marked a property modified as read only in my model and went to test it by executing PUT {"modified": 1} but it threw SQL errors. After enabling DEBUG on the mysql connector I realized it just removed the column set in the statement but then the query was invalid:
I marked a property
modified
as read only in my model and went to test it by executingPUT {"modified": 1}
but it threw SQL errors. After enabling DEBUG on the mysql connector I realized it just removed the column set in the statement but then the query was invalid:loopback:connector:mysql SQL: UPDATE
tasksSET WHERE
id=?, params: [1]
As you can see there are no columns being SET in between SET and WHERE.
The text was updated successfully, but these errors were encountered: