Operators
Operators available
Dyfono
SQL
const search1: Search = {
where: [
{
field: "quantity",
searchTerm: 10,
},
]
};
const search2: Search = {
where: [
{
field: "quantity",
operator: OperationTypes.EQUAL
searchTerm: 10,
},
]
};
// search1 and search2 are equivalentLast updated