Parse comparators from values.
Comparision operators that are encoded into the value are also considered. For example, a query such as: name=john&age=%3E21 becomes the following hash:
{
criteria: {
name: 'john',
age: { $gt: 21 }
}
}Comparision operators that are encoded into the value are also considered. For example, a query such as: name=john&age=%3E21 becomes the following hash:
{
criteria: {
name: 'john',
age: { $gt: 21 }
}
}