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