mongoose-query-parser icon indicating copy to clipboard operation
mongoose-query-parser copied to clipboard

Support Boolean field

Open chintanshahts opened this issue 1 year ago • 0 comments

Input:

req.query = {
    is_public: false
}

output:

{
   filter: {
       is_public : {$exists: false}
  }
}

Expected Output:

{
   filter: {
       is_public : false
  }
}

chintanshahts avatar Jan 23 '24 16:01 chintanshahts