Guest User

Untitled

a guest
Oct 8th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. {
  2. "-KhWrBcYyMluJbK7QpnK" : {
  3. "Info" : {
  4. "Email" : "xyz@gmail.com"
  5. },
  6. "Settings" : {
  7. "Status" : "Accepted"
  8. }
  9. },
  10. "-KhX0tgQvDtDYqt4XRoL" : {
  11. "Info" : {
  12. "Email" : "abc@abc.com"
  13. },
  14. "Settings" : {
  15. "Status" : "Accepted"
  16. }
  17. },
  18. "-KhX1eo7uFnOxqncDXQ5" : {
  19. "Info" : {
  20. "Email" : "abc@abc.com"
  21. },
  22. "Settings" : {
  23. "Status" : "Pending"
  24. }
  25. }
  26. }
  27.  
  28. "Invitation" : {
  29. ".indexOn": ["Info/Email","Settings/Status"]
  30. }
  31.  
  32. var rootRef = firebase.database().ref().child('Invitation');
  33. var userInvitations = rootRef.child("Info").orderByChild("Email").equalTo("abc@abc.com");
  34. var allInvitations = $firebaseArray(userInvitations);
  35.  
  36. {
  37. "-KhWrBcYyMluJbK7QpnK" : {
  38. "Email" : "xyz@gmail.com",
  39. "Settings" : {
  40. "Status" : "Accepted"
  41. }
  42. },
  43. "-KhX0tgQvDtDYqt4XRoL" : {
  44. "Email" : "abc@abc.com",
  45. "Settings" : {
  46. "Status" : "Accepted"
  47. }
  48. },
  49. "-KhX1eo7uFnOxqncDXQ5" : {
  50. "Email" : "abc@abc.com",
  51. "Settings" : {
  52. "Status" : "Pending"
  53. }
  54. }
  55. }
  56.  
  57. "Invitation" : {
  58. "Info" : {
  59. ".indexOn": "Email",
  60. },
  61. "Settings" : {
  62. ".indexOn": "Status",
  63. }
  64. }
  65.  
  66. var allInvitations = [];
  67. var rootRef = firebase.database().ref().child('Invitation');
  68. var userInvitations = rootRef.orderByChild("Email").equalTo("abc@abc.com");
  69. userInvitations.on('value', snap => {
  70. var invitations = snap.val()
  71. for (prop in invitations ) {
  72. allInvitations.push(invitations[prop ]);
  73.  
  74. }
  75. console.log(allInvitations);
  76.  
  77. })
Add Comment
Please, Sign In to add comment