OBJECT
PageConfiguration
Information related to a user's page configuration
link GraphQL Schema definition
1 type PageConfiguration { 2 3 # Additional information for determining what else to show to a specific user 4 : String 5 6 # Page elements as a list of object blocks, null if a page does not exist 7 : [PageElementBlock!] 8 9 # Journey id for a page configuration 10 : String 11 12 # Where the user should be redirected, used if a page does not exist 13 : String 14 15 # Used as HTML Page Title 16 : String 17 18 }