Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doesn't accept views that emit a null value #4

Open
jay-jlm opened this issue Jun 2, 2017 · 0 comments
Open

Doesn't accept views that emit a null value #4

jay-jlm opened this issue Jun 2, 2017 · 0 comments

Comments

@jay-jlm
Copy link

jay-jlm commented Jun 2, 2017

Let me know if this is expected behavior of it should be patched

Here's the error:

res[i].id = res[i]._id;
TypeError: Cannot read property '_id' of null

And here is the view:

function(doc) {
   if (doc._id.indexOf("test") == 0) {
       emit( [doc._id , 0], null)
       emit( [doc._id , 1], { _id: doc.index })
       emit( [doc._id , 2], { _id: doc.productType } )
   }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant