Functions
These are all the functions housed within the asynchronous WastefulDB module. Fundamentally they perform the same as their synchronous versions but are different in how they are formatted.
.insert()
.insert()await db.insert({id: "1234", ph: 0, foo: "bar"});.insertBulk([ ])
.insertBulk([ ])await db.insertBulk([
{id: "4321", name: "Neil"},
{full_name: "Neil A.", age: 42}
]);.find()
.find().findMore([ ])
.findMore([ ]).update()
.update().mupdate()
.mupdate().check()
.check()Last updated