OBJECT

SeoContent

SEO specific content for a particular page. Eg. advert search page

link GraphQL Schema definition

  • type SeoContent implements Node {
  • # Content to use above the main content of the page
  • contentAboveHtml: String!
  • # Content to use below the main content of the page
  • contentBelowHtml: String!
  • # Text for use as the page description
  • description: String!
  • # Text for use as the content of the main heading on the page
  • heading: String!
  • id: ID!
  • # Text for use as the page title
  • title: String!
  • }