Guest User

Untitled

a guest
Nov 6th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.81 KB | None | 0 0
  1. instagram-cloudfirestore-database
  2.  
  3. [+] -> collection
  4. [>] -> document
  5. [ ] -> key
  6.  
  7. +post
  8. >postkey
  9. profileImage(string)
  10. username(string)
  11. onwerPost(string)
  12. imagePost(string)
  13. videoPost(string)
  14. textPost(string)
  15. likePostCount(number)
  16. commentPostCount(number)
  17. sharePostCount(number)
  18. watchVideoPostCount(number)
  19. timestamp(timestamp)
  20. +likePost
  21. >userkey
  22. username(string)
  23. profileImage(string)
  24. onwerLikePost(string)
  25. timestamp(timestamp)
  26. +comment
  27. >commentKey
  28. username(string)
  29. profileImage(string)
  30. textComment(string)
  31. timestamp(timestamp)
  32. likeCommentCount(number)
  33. onwerComment (string)
  34. +likeComment
  35. >userkey
  36. username(string)
  37. profileImage(string)
  38. biography(string)
  39. timestamp(timestamp)
  40. +reply
  41. >replyKey
  42. username (string)
  43. profileImage (string)
  44. onwerReply (string)
  45. textReply(string)
  46. timestamp(timestamp)
  47. likeReplyCount(number)
  48. +likeReply
  49. >userkey
  50. username(string)
  51. profileImage(string)
  52. onwerLikeReply(string)
  53. timestamp(timestamp)
  54. +story
  55. >storykey
  56. username (string)
  57. profileImage (string)
  58. mediaLink (string)
  59. timestamp (timestamp)
  60. ownerStory (string)
  61. watchStoryCount(number)
  62. +watchStory
  63. >userkey
  64. username(string)
  65. profileImage(string)
  66. onwerWatchStory(string)
  67. timestamp(timestamp)
  68.  
  69. +Notification
  70. >notificationKey
  71. postKeyPath(Reference)
  72. commentKeyPath(Reference)
  73. replyKeyPath(Reference)
  74. userKeyPath(Reference)
  75. username(string)
  76. ownerKey(string)
  77. timestamp(timestamp)
  78. type(string)
  79. profileImage(string)
  80.  
  81. +user
  82. >userkey
  83. profileImage(string)
  84. username(string)
  85. postCount(number)
  86. followingCount(number)
  87. followerCount(number)
  88. biography(string)
  89. thumbnailPost(object)
  90. {postkey:imageLink(string)}
  91. post(array)
  92. post/postkey(Reference)
  93. story(array)
  94. story/storyKey(Reference)
  95. +following
  96. >userkey
  97. username(string)
  98. profileImage(string)
  99. biography(string)
  100. timestamp(timestamp)
  101. +follower
  102. >userkey
  103. username(string)
  104. profileImage(string)
  105. biography(string)
  106. timestamp(timestamp)
  107. +activityLog
  108. >action
  109. story(Array)
  110. story/storykey(Reference)
  111. post(Array)
  112. post/postkey(Reference)
  113. comment(Array)
  114. post/postkey/comment/commentkey(Reference)
  115. reply(Array)
  116. post/postkey/comment/commentkey/reply/replyKey(Reference)
  117. >like
  118. likepost(Array)
  119. post/postkey/likePost/userkey(Reference)
  120. likecomment(Array)
  121. post/postkey/comment/commentkey/likecomment/userkey(Reference)
  122. likereply(Array)
  123. post/postkey/comment/commentkey/reply/replyKey/likereply/userkey(Reference)
  124. >follow
  125. following(Array)
  126. user/userkey/following/userkey(Reference)
  127. follower(Array)
  128. user/userkey/follower/userkey(Reference)
  129. >watch
  130. story(Array)
  131. story/storykey(Reference)
  132. video(Array)
  133. post/postkey(Reference)
  134.  
  135. newfeed(array)
  136. post/postkey(Reference)
  137. notification(array)
  138. notification/notificationKey(Reference)
  139.  
  140. +userStory
  141. >userkey
  142. followinguserkey(array)
  143. /story/storyKey(Reference)
  144.  
  145. +userNewfeed
  146. >userkey
  147. postkey(null)
  148.  
  149. +userNotification
  150. >userkey
  151. own(array)
  152. /notification/notificationkey(Reference)
  153. +following
  154. >onePostManyUserAction
  155. postkey(array)
  156. /user/userkey(Reference)
  157. >oneUserManyPostAction
  158. followingUserKey(array)
  159. /user/userkey/activityLog/like/likepost(Reference)
Add Comment
Please, Sign In to add comment