Github user nolanlawson commented on the pull request:

    https://github.com/apache/couchdb-chttpd/pull/33#issuecomment-98386177
  
    Questions:
    
    1) Are attachments assumed if `atts_since` is provided? Seems more 
intuitive to me that you would need to individually specify `attachments=true` 
like a normal GET.
    
    2) Is `revs=true` assumed for each result? Seems so, if the `_revisions` 
object is being returned.
    
    2) Is `open_revs` supported? Can a single `docs` list contain more than one 
rev? E.g. can I do:
    
    ```json
    {"docs": [{"id": "my-doc", "open_revs": ["1-x", "1-y", "1-z"]}] }
    ```
    
    Or do I have to do:
    
    ```json
    {"docs": [
      {"id": "my-doc", "rev": "1-x"},
      {"id": "my-doc", "rev": "1-y"},
      {"id": "my-doc", "rev": "1-z"}
    ]
    ```
    
    ?
    
    Also possibly the more important question: how can I build CouchDB with 
this branch so I can start testing against it?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to