function(doc) { if (doc.type == "user") { emit([doc._id,0],null); } else if(doc.type == "project") { emit([doc.username,doc._id],null); } }