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('name', [FilterType::EQUAL]);
$filter = [
'type' => '$eq',
'target' => 'name',
'value' => 'Taylor',
];
$sql = Person::filter([$filter])->toRawSql();
select * from "people" where "people"."name" = 'Taylor'
