pages-query-single.gql 396 B

123456789101112131415161718192021222324252627
  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. }