I'm using loopback js for backend rest api. I'm switching from Mysql to Mongodb.
I have been using query filters like these:
{filter:{where:{fieldName:null}}}
This works fine with mysql but when switching to mongodb it dosen't work. https://docs.mongodb.com/v3.2/tutorial/query-for-null-fields/ It is supported as document says. Am I missing some configurations for loopback?
My goal is to change mysql to mongodb without updating any queries.