joelatgrayv
joelatgrayv
Sorry, I should have included my base model. It does have `protected $connection = 'dynamodb';`. I'll revise the example. You can see that the single model creation works in the...
The Factory was overriding the $connection in the model. For me I additionally had to revise the setConnection method to prevent this: ``` protected $connection = 'dynamodb'; public function setConnection($name)...
The Scout docs mention this;: https://laravel.com/docs/11.x/scout#modifying-the-import-query If you would like to modify the query that is used to retrieve all of your models for batch importing, you may define a...