node.js - Ignore change API during insert -
i have change api implementation in node application single table. so, change(insert, update , delete) change notification fire node driver.
what disable change inserts(based on business condition). during insert table, if business condition satisfied dont want rethinkdb fire change notification node driver.
is there way this.
you can put .filter
before call .changes
(or afterward if want exclude changes based on old_val/new_val pair).
Comments
Post a Comment