Advertisement
Guest User

Untitled

a guest
Dec 9th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. query{
  2. activities(page: 1, display_comments:"threaded", per_page: 20, component:"activity") {
  3. pagination {
  4. total_items
  5. total_pages
  6. }
  7. result {
  8. id
  9. content
  10. date
  11. type
  12.  
  13. topics {
  14. id
  15. label
  16. icon_url
  17. }
  18.  
  19. user_info {
  20. name
  21. id
  22. avatar_urls
  23. }
  24. comments {
  25. pagination {
  26. total_items
  27. }
  28. }
  29.  
  30. activity_metadata(filter:{
  31. meta_key:"_mpp_attached_media_id"
  32. }){
  33. pagination{
  34. total_items
  35. total_pages
  36. }
  37. result{
  38. id
  39. media{
  40. id
  41. guid
  42. }
  43. }
  44. }
  45.  
  46. activity_reactions_total {
  47. smiley_id
  48. activity_id
  49. total
  50. }
  51.  
  52. activity_reaction_user(user_id: 1){
  53. id
  54. smiley_id
  55. user_id
  56. activity_id
  57. }
  58. }
  59. }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement