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('description', [FilterType::NOT_LIKE])
$filter = [ 'type' => '$notLike', 'target' => 'description', 'value' => 'Symfony', ];
$sql = Project::filter([$filter])->toRawSql();
select * from "projects" where "projects"."description" NOT LIKE '%Symfony%'
select * from "projects" where "projects"."description" NOT LIKE 'Symfony%'
select * from "projects" where "projects"."description" NOT LIKE '%Symfony'