OBJECT
WebPath
The web path that describes a single web page.
link GraphQL Schema definition
1 type WebPath { 2 3 # The title of the web page. 4 String : 5 6 # The url of the web page. (Note: If the page_url parameter is rendered client 7 # side without any additional input validation, it can result in the potential 8 # introduction of vulnerabilities such as Cross-site scripting. Only urls starting 9 # with valid and known URIs i.e. http:// or https:// should be allowlisted and all 10 # other variations disallowed.) 11 String : 12 13 }