Guest User

Untitled

a guest
Feb 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. {
  2. nodeQuery(filter: {status: true, type: "article"}, limit: 5) {
  3. totalCount: count
  4. entities {
  5. nid: entityId
  6. title: entityLabel
  7. ... on NodeArticle {
  8. body {
  9. summary
  10. }
  11. ...imageThumbnail
  12. }
  13. }
  14. }
  15. }
  16.  
  17. fragment imageThumbnail on NodeArticle {
  18. fieldImage {
  19. image: derivative(style: thumbnail) {
  20. url
  21. height
  22. width
  23. }
  24. }
  25. }
Add Comment
Please, Sign In to add comment