You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 30, 2024. It is now read-only.
I didn't find a parameter on changes method where i can pass my filter data that is a str value or a dict like a json. On couchdb docs, to do it i need use a POST request and send the filter data on request body. So how can i call some thing like .addPostParams(**params) ? Check out the couchdb docs about it http://docs.couchdb.org/en/2.0.0/api/database/changes.html#post--db-_changes
I'm using filters to get some changes on my server, but my team needed create filters that receives arguments, like the below function:
On python code, i'm calling this function using changes method like this:
I didn't find a parameter on changes method where i can pass my filter data that is a str value or a dict like a json. On couchdb docs, to do it i need use a POST request and send the filter data on request body. So how can i call some thing like
.addPostParams(**params)? Check out the couchdb docs about it http://docs.couchdb.org/en/2.0.0/api/database/changes.html#post--db-_changesInformations about my environment