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
If I call a view in couchDB, it returns something like:
{"total_rows":14,"offset":0,"rows":[...] }
The "total_rows" is the count of how many total possible rows the view contains. The size of rows[] is the number of rows ACTUALLY returned based on limit (if specified) and skip values.
dw.view() does not seem to return "total_rows" or "offset". How can I know how many total rows are in the view so i can page?
Can you return a result that looks like: {"total_rows":14,"offset":0,"rows":[...] }
The text was updated successfully, but these errors were encountered:
If I call a view in couchDB, it returns something like:
{"total_rows":14,"offset":0,"rows":[...] }
The "total_rows" is the count of how many total possible rows the view contains. The size of rows[] is the number of rows ACTUALLY returned based on limit (if specified) and skip values.
dw.view() does not seem to return "total_rows" or "offset". How can I know how many total rows are in the view so i can page?
Can you return a result that looks like: {"total_rows":14,"offset":0,"rows":[...] }
The text was updated successfully, but these errors were encountered: