Hi, i have a problem with liking records to other record with relationship one to many.
-
I have an API call which gives me:
[ { "Headline": "<headline>", "Subtitle": "<subtitle>", "Content": "<content>" }, { "Headline":"<headline>", "Subtitle":"<subtitle>", "Content":"<content>" } ]
-
I create new top level ContentGeneration record (has a field ContentVersions - list)
-
I create a Scheduled api workflow ona list of that api call result.
-
that backend api workflow gets the variables Headline, Subtitle, Content and record of ContentGeneration
-
that backend api creates new ContentVersion with Headline, Subtitle and Content and then make changes to input ContentGeneration by adding ContentVersion to it.
The problem.
2 ContentVersions are created, but only the last one is added in ContentGeneration.
How do i link more ContentVersions to field list of ContentGeneration?