Add an iterable of items to this :class:`_orm.AppenderQuery`. The given items will be persisted to the database in terms of the parent instance's collection on the next flush.
(self, iterator: Iterable[_T])
| 262 | self._add_all_impl([item]) |
| 263 | |
| 264 | def extend(self, iterator: Iterable[_T]) -> None: |
| 265 | """Add an iterable of items to this :class:`_orm.AppenderQuery`. |
| 266 | |
| 267 | The given items will be persisted to the database in terms of |
| 268 | the parent instance's collection on the next flush. |
| 269 | |
| 270 | """ |
| 271 | self._add_all_impl(iterator) |
| 272 | |
| 273 | def append(self, item: _T) -> None: |
| 274 | """Append an item to this :class:`_orm.AppenderQuery`. |
no test coverage detected