iriscouch / follow

Very stable, very reliable, NodeJS CouchDB _changes follower

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

question: How I can recieve `change` with previous revision of doc?

Sigura opened this issue · comments

Other words, how could I get differences of changes?

as I see revs_info does not work. Could I make PR to support it?

I found only long way:

  1. request doc with revs_info=true
    GET couchDb/id?revs_info=true
  2. then request previous rev
    GET couchDb/id?rev=rev

Yea i dont think its possible to query this with changes but you can do that get request one each change event.

I did, thank you!