Objects

PageInfoType

Type containing page information

Type containing page information

type PageInfoType {
  id: Int!
  alias: String!
  canonicalUrl: String
  alternativeCanonicalUrls: [String] @deprecated
  alternativeUrls: [AlternativeUrlType]
  backgroundImage: String
  logo: String
  name: String!
  hideTitle: Boolean!
  hideDescription: Boolean!
  primaryDescription: String
  primaryImage: String
  secondaryDescription: String
  meta: MetadataType
  subCategories: [CategoryType]
}

Fields

id ● Int! non-null scalar required

Page ID

alias ● String! non-null scalar required

Alias

canonicalUrl ● String scalar

Full path to the page

alternativeCanonicalUrls ● [String] deprecated list scalar

Deprecated: Use AlternativeUrls instead.

Alternative full paths to the page

alternativeUrls ● [AlternativeUrlType] list object

Alternative urls to the page

backgroundImage ● String scalar

Background image

logo ● String scalar

Logo

name ● String! non-null scalar required

Name

hideTitle ● Boolean! non-null scalar required

Whether the Name-field should be hidden

hideDescription ● Boolean! non-null scalar required

Whether the descriptions should be hidden

primaryDescription ● String scalar

Primary description

primaryImage ● String scalar

Primary image

secondaryDescription ● String scalar

Secondary description

meta ● MetadataType object

Page metadata

subCategories ● [CategoryType] list object

Page sub-categories

Returned By

listPageInfo query