dashboard-query-recentpages.gql 257 B

1234567891011121314151617
  1. query {
  2. pages {
  3. list(limit: 10, orderBy: UPDATED, orderByDirection: DESC) {
  4. id
  5. locale
  6. path
  7. title
  8. description
  9. contentType
  10. isPublished
  11. isPrivate
  12. privateNS
  13. createdAt
  14. updatedAt
  15. }
  16. }
  17. }