Guest User

Untitled

a guest
Apr 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. query search($queryString: String) {
  2. entries(section: [disorders, services], limit: 5, search: $queryString) {
  3. title
  4. url
  5. section {
  6. id
  7. name
  8. }
  9. ... on Services {
  10. contentMatrix {
  11. ... on ContentMatrixHeadline {
  12. __typename
  13. headline
  14. }
  15. ... on ContentMatrixParagraph {
  16. __typename
  17. paragraph {
  18. content
  19. }
  20. }
  21. # 5 more matrix block types
  22. }
  23. }
  24. ... on Disorders {
  25. contentMatrix {
  26. ... on ContentMatrixHeadline {
  27. __typename
  28. headline
  29. }
  30. ... on ContentMatrixParagraph {
  31. __typename
  32. paragraph {
  33. content
  34. }
  35. }
  36. # 5 more matrix block types (same as above)
  37. }
  38. }
  39. }
  40. }
Add Comment
Please, Sign In to add comment