Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. {
  2. _id: 10,
  3. type: 'library',
  4. address: 'aaaa'
  5. },
  6. {
  7. _id: 20,
  8. type: 'library',
  9. address: 'bbbb'
  10. },
  11. {
  12. _id: 30,
  13. type: 'shelf'
  14. library_id: 10
  15. },
  16. {
  17. _id: 40:
  18. type: 'book',
  19. shelf_id: 30
  20. }
  21.  
  22. function (doc) {
  23.  
  24. if (doc.type === "book") {
  25. channel("library-"+retrieve(doc.shelf_id).library_id)
  26. }
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement