Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
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'