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.

12 lines
217 B

  1. query ($parent: Int!, $mode: PageTreeMode!, $locale: String!) {
  2. pages {
  3. tree(parent: $parent, mode: $mode, locale: $locale) {
  4. id
  5. path
  6. title
  7. isFolder
  8. pageId
  9. parent
  10. }
  11. }
  12. }