I have this url for example: ?match.statusN=Active&match.statusN=Pending
I can collect the query string in my node code like this let matches = req.query['match.statusN'];
How do I get all the records with those statuses
this for example returns 0 await this.api.store.find("estate", null, options, null);
Does fortune js even support multi param filtering, and how it's done the proper way?
I have this url for example: ?match.statusN=Active&match.statusN=Pending
I can collect the query string in my node code like this let matches = req.query['match.statusN'];
How do I get all the records with those statuses
this for example returns 0 await this.api.store.find("estate", null, options, null);
Does fortune js even support multi param filtering, and how it's done the proper way?