Hi, I’m performing an external api requests (using “API Connector” that returns an array of objects. For example:
{
[{
"name": "john",
"id": 1
},
{
"name": "ringo"
"id": 2
}]
}
Given I’ve already have an appropriate data type for these fields, let’s call it Star
, is it possible to populate it with this array, so that every object will be another thing in the Star
table?
Seems like the data actions enable creating only one thing from a list
Thanks,
Benny