Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. fragment Footer on EntityNodeFooter {
  2. footerLeftList {
  3. ... on FieldItemNodeFieldFooterLeftList {
  4. entity {
  5. ...NavLink
  6. }
  7. }
  8. }
  9. footerCenterList {
  10. ... on FieldItemNodeFieldFooterCenterList {
  11. entity {
  12. ...NavLink
  13. }
  14. }
  15. }
  16. footerSocialLinks {
  17. entity {
  18. ... on EntityNodeDnModuleSocialLinks {
  19. headline
  20. facebookUrl
  21. instagramUrl
  22. twitterUrl
  23. youtubeUrl
  24. }
  25. }
  26. }
  27. footerAppLinks {
  28. entity {
  29. ... on EntityNodeDnModuleAppLinks {
  30. title
  31. headline
  32. appstoreLink
  33. googleplayLink
  34. }
  35. }
  36. }
  37. footerClientRating {
  38. entity {
  39. ... on EntityNodeDnModuleClientRating {
  40. headline
  41. clientRatingImage {
  42. entity {
  43. uri
  44. }
  45. }
  46. }
  47. }
  48. }
  49. footerText {
  50. entity {
  51. ... on EntityNodeDnModuleFooterText {
  52. headline
  53. hotlineServiceText
  54. hotlineServicePhone
  55. hotlineServiceTariff
  56. hotlineEmailText
  57. hotlineEmail
  58. }
  59. }
  60. }
  61. footerCopyright
  62. footerBottomLinks{
  63. entity{
  64. ...NavLink
  65. }
  66. }
  67. }
  68.  
  69. {
  70. footer: nodeQuery(title: "DN-Module-Footer DE English") {
  71. ...Footer
  72. }
  73. }
  74.  
  75. fragment NavLink on EntityNodeDnModuleNavlink {
  76. url
  77. pageName
  78. isUrlExternal
  79. title
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement