Append an item to this :class:`_orm.AppenderQuery`. The given item will be persisted to the database in terms of the parent instance's collection on the next flush.
(self, item: _T)
| 271 | self._add_all_impl(iterator) |
| 272 | |
| 273 | def append(self, item: _T) -> None: |
| 274 | """Append an item to this :class:`_orm.AppenderQuery`. |
| 275 | |
| 276 | The given item will be persisted to the database in terms of |
| 277 | the parent instance's collection on the next flush. |
| 278 | |
| 279 | """ |
| 280 | self._add_all_impl([item]) |
| 281 | |
| 282 | def remove(self, item: _T) -> None: |
| 283 | """Remove an item from this :class:`_orm.AppenderQuery`. |
no test coverage detected