feat: support `Document` type on update/remove etc
Author: CologlerCreated Aug 8, 2020Updated May 18, 2021
Labelsdiscussionpinned
Currently:
table = ...
items = table.all()
... # work with items, than:
for item in items:
table.update(item, doc_ids=[item.doc_id])Expected:
table = ...
items = table.all()
... # work with items, than:
for item in items:
table.update(item)Source: msiemens/tinydb