How can I parse the Claude output containing a title and 5 posts, then map each element (title and individual posts) into separate fields in a Notion database?
I’ve already separated the content into 6 output bundles using a text parser.
Now I need help on transferring each bundle to its corresponding field in Notion, ensuring the title and each post end up in the right place in my Notion Database. How do i do this?
You’ll need to use an Array Aggregator to combine them all into a single bundle, so you can map the variables in a single operation.
Every result (item/record) from a search/match module will output a bundle. To “combine” them into a single structure, you’ll need to use an aggregator of some sort.
Aggregators are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the Array aggregator module. The next popular aggregator is the Text Aggregator which is very flexible and has applies to many use-cases.
To map items in arrays, see Mapping with Arrays link below or in the Make Academy:
Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —
General
Help Center Basics
Articles & Videos
samliew – request private consultation
Join the Make Fans Discord server to chat with other makers!
3 Likes
I successfully mapped text bundles to Notion fields using the array aggregator. Now, I’m trying to do something similar with images:
- I’ve converted a PDF to images, which are in an array.
- I’m attempting to parse through this array and map the image URLs to Notion fields.
- However, the images aren’t appearing in Notion.
What steps am I missing to successfully get these images in my Notion database? Are there specific requirements for image URL formatting or additional steps needed when working with images in Make and Notion?