You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
396 B

  1. query($id: Int!) {
  2. pages {
  3. single(id:$id) {
  4. id
  5. path
  6. hash
  7. title
  8. description
  9. isPrivate
  10. isPublished
  11. privateNS
  12. publishStartDate
  13. publishEndDate
  14. contentType
  15. createdAt
  16. updatedAt
  17. editor
  18. locale
  19. authorId
  20. authorName
  21. authorEmail
  22. creatorId
  23. creatorName
  24. creatorEmail
  25. }
  26. }
  27. }