2
0

common-pages-query-list.gql 361 B

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