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', ['page']); }, routes: function(sourceEntity, context) { context.url(sourceEntity.url); }, properties: function (sourceEntity, context) { return { title: sourceEntity.properties.title, blocks: context.partial("blocks", sourceEntity.properties.blocks), aboutUsPage: context.reference("page").byOriginId(sourceEntity.properties.aboutUsPage.id), }; } }
Was this page helpful?