Guest User

Untitled

a guest
Jan 17th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. const crmUserQuery = gql`
  2. query crmUser($id: ID!) {
  3. crmUser(id: $id) {
  4. id
  5. name
  6. business_card_photo
  7. agent_license_number
  8. brokerage_address
  9. brokerage_name
  10. about_me
  11. awards
  12. email
  13. contact_email
  14. listings {
  15. id
  16. address_full_street_address
  17. photos
  18. list_price
  19. address_postal_code
  20. address_city
  21. bathrooms
  22. bedrooms
  23. address_state_or_province
  24. listing_category
  25. brokerage {
  26. name
  27. phone
  28. }
  29. }
  30. user {
  31. headline
  32. avatar
  33. email
  34. cover_background_color
  35. instagram_url
  36. name
  37. phone
  38. linkedin_profile_url
  39. twitter_profile_url
  40. facebook_profile_url
  41. wishlists {
  42. id
  43. name
  44. favorites {
  45. listing {
  46. id
  47. address_full_street_address
  48. photos
  49. }
  50. }
  51. }
  52. }
  53. }
  54. }
  55. `
Add Comment
Please, Sign In to add comment