Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. [
  2. {
  3. "id": "0" ,
  4. "name": "Employee 1" ,
  5. "schedules": [
  6. {"Weekdays": "yes"},
  7. {"Weekends": "no"}
  8. ]
  9. } ,
  10.  
  11. {
  12. "id": "0" ,
  13. "name": "Employee 2" ,
  14. "schedules": [
  15. {"Weekdays": "no"},
  16. {"Weekends": "yes"}
  17. ]
  18. }
  19.  
  20. ]
  21.  
  22. r.db('shank').table('teachers').replace(r.row.without({'schedules': 'Weekends'})).run(connection, function(err, result) {
  23. if (err) throw err;
  24. ;
  25. //confirmation stuff
  26. });
  27. });
  28.  
  29. "schedules": [
  30. {"Weekdays": "yes"},
  31. {}
  32. ]
  33.  
  34. r.row.without({'schedules': {Weekends}})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement