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.

14 lines
361 B

  1. query ($limit: Int, $orderBy: PageOrderBy, $orderByDirection: PageOrderByDirection, $tags: [String!], $locale: String) {
  2. pages {
  3. list(limit: $limit, orderBy: $orderBy, orderByDirection: $orderByDirection, tags: $tags, locale: $locale) {
  4. id
  5. locale
  6. path
  7. title
  8. description
  9. createdAt
  10. updatedAt
  11. tags
  12. }
  13. }
  14. }