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
this works
return rethinkdbAdapter.r.table('limits').filter({'user': {'user_id': user_id}}).run();
// this does not
return Limit.findAll({where: {'user.user_id': {'==': user_id}}});
// this does not work either
return Limit.findAll({'user.user_id': user_id});
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: