WebPage

(OBJECT)

content page

link GraphQL Schema definition

  • type WebPage {
  • # internal page ID
  • id: ID!
  • # main title of page
  • title: String
  • # short text below the title in the search result
  • description: String
  • # list of page blocks
  • blocks: [ContentBlock]!
  • # parent page, if null the given page is the root node
  • parent_webpage: WebPage
  • # list of subpages at the next level
  • children_webpages: [WebPage]
  • }

link Require by