I looked around but couldn't find any documentation on coax. You might consider switching to a different CouchDB-compatible JS library with more support.
> BTW if you add the ?include_docs=true URL param when querying a view, you'll get the document bodies inline along with the rows.
> I don't get what are you talking about.
> I am querying view like this :
> config.views(["getrecords_typewise", {
> startkey : "contact",
> endkey : "contact",
Just insert:
include_docs: true,
there. The views() function takes the properties of that object you pass in and adds them to the URL as query parameters.
—Jens