Once you have made your model Filterable.
Filterable
You should pass filters to ::filter() on the model.
::filter()
$sql = Product::filter([ [ 'target' => 'name', 'type' => '$eq', 'value' => 'TV', ], ])->toRawSql();
select * from "products" WHERE "products"."name" = 'TV'