Definition
Array/Object Structure
string
required
string|int|float
required
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Filter::field('age', [FilterType::LESS_THAN])
$filter = [
'type' => '$lt',
'target' => 'age',
'value' => 18,
];
$sql = Person::filter([$filter])->toRawSql();
select * from "people" where "people"."age" < 18
