Setup: ``` protected $primaryKey = 'id'; protected $compositeKey = ['id', 'position']; ``` If you then do: ``` $data = ExtendedDynamoDbModel::where('id', $id)->get(); ``` This ends up calling a Scan rather than a Query.