My goal:
Is to get resources to learn how to manipulate data structure in Make.com. Getting multiple database entries into a single paragraph or the reverse. Parsing a paragraph and created multiple variables to put into a database. That kind of thing.
Example Use case:
ChatGPT response (comes in as a string text block) > Parse (cut up into pieces) > (something) > Update multiple Notion database entries.
What I’ve tried:
I have taken vanilla code courses so i understand objects, JSON, arrays ect. I’ve watched several Make.com series and tried AI. None of which do a very good job describing how to manipulate data. Correct use of aggregators, iterators, variables, multiple variables. They focus on modules or beginning understanding of code but not connecting the concepts.
Where I am currently:
I have a test scenario. I have a block of text in a Google doc and I’ve marked data I want with variables using ##.
Google Doc data:
##Name##
Mad Max
##Type##
News
Next is a parser that grabs that info and is working.
[
{
“i”: 1,
“$1”: “Name”,
“$2”: “Mad Max\r\n”
},
{
“i”: 2,
“$1”: “Type”,
“$2”: “News\r\n”
},
From here I see…
In that image you can see I have an output but I’m not sure how I can get all the data in their own variables that I can then use later globally in a scenario to update my Notion database. I figure a “set multiple variable” or something but I can’t get anything to work as expected.