Hello @nolanlawson @jlami
first of all this a copy of #79
getting success message on
delete(id) { this.baseDB.rel.find('post', id) .then( post => { console.log('to be deleted', post) return this.baseDB.rel.del('post', { id: post.id, rev: post.rev }) }) .then( success => { console.log('deleted', success) <== {deleted: true} } ) .catch( err => console.log(err) ) }
{deleted: true}
but data is still present in post array