What are you trying to achieve?
I want our Slack CreateMessage module to include the URL of the Notion page created in Module 25 (daily video analysis page). Right now it only maps the Module 26 summary page URL.
Steps taken so far
Module 25 (notion:createAPage) generates a detailed “daily video analysis” page and returns its URL.
Module 26 (notion:createAPage) then creates a daily summary page, and its URL is passed downstream.
I used a BasicAggregator and two GPT modules to build trend analyses.
In the Slack CreateMessage module, I mapped {{26.url}} into the message text successfully.
I attempted to map {{25.url}}, but because the flow is aggregated and routed into Module 26, the Module 25 output isn’t available in the Slack mapping context.
I’m now considering hard-coding the Module 25 URL directly into the Slack “text” field, but I’d like to know if there’s a cleaner, more maintainable way to do this.