When using Loopback 4, the filter object that is received by functions like Get and Count appears as shown below:
{
where: {
property: {
op: value;
}
}
}
I am interested in converting this structure into an SQL WHERE clause to use it in my repository layer for constructing select statements. Is there a way to achieve this? If so, how can I do it?