Is your feature request related to a problem? Please describe.
Cannot OR queries, such as fname='Tom' OR fname='Bob'
Describe the solution you'd like
{
"conditions": [
{
"where": {
"fname": "Tom"
}
},
{
"conjuction": "or",
"where": {
"fname": "Bob"
}
}
],
"orderBy": {
"fname": "desc"
}
}
Is your feature request related to a problem? Please describe.
Cannot OR queries, such as
fname='Tom' OR fname='Bob'Describe the solution you'd like
{ "conditions": [ { "where": { "fname": "Tom" } }, { "conjuction": "or", "where": { "fname": "Bob" } } ], "orderBy": { "fname": "desc" } }