I am facing an invalid query parameter error from feathersjs back end . i am using react as front end. My request is .
I did not write this code initially. the $includeEc was already there, but that does not create an error. I know $include, $limit are there too and $limit is a feathersjs query.
If I remove $dis
, there is no error. I need $dis
to validate something on my API.
let data = {
$include: true,
$includeEc: true,
$limit: -1,
$dis: 91,
};
let res = await client.service('servicerequest').find({ query: data });
If I remove $dis
there is no problem.