Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
/** @type {Enterspeed.FullSchema} */ export default { triggers: function(context) { context.triggers("cms", ["homePage", "contentPage"]); }, properties: function (sourceEntity, context) { return { link: { name: sourceEntity.properties.metaData.name, url: sourceEntity.url, originId: sourceEntity.originId, }, level: sourceEntity.properties.metaData.level, }; } }
/** @type {Enterspeed.FullSchema} */ export default { triggers: function(context) { context.triggers("cms", ["contentPage"]); }, properties: function (sourceEntity, context) { return { breadcrumbs: context .reference("breadcrumbItem") // The nodePath property is an array of ancestor ids. .byOriginIds(sourceEntity.properties.metaData.nodePath) }; } }
Was this page helpful?