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.

15 lines
206 B

  1. query ($query: String!) {
  2. pages {
  3. search(query:$query) {
  4. results {
  5. id
  6. title
  7. description
  8. path
  9. locale
  10. }
  11. suggestions
  12. totalHits
  13. }
  14. }
  15. }