Hey everybody,
I’m using an external API that returs data on a list of Key Value Pairs like this:
“United States”: [
{
“Key”: “Florida”,
“Value”: “Tallahassee”
},
{
“Key”: “Utah”,
“Value”: “Salt Lake City”
},
{
“Key”: “Nevada”,
“Value”: “Carson City”
}
The list is always 1 to 1, meaning 1 Key for 1 Value.
When I save “Key” and “Value” to my Bubble Data Base I actually save the list that was return… something like this:
Key = Florida, Utah, Nevada
Value = Tallahassee, Salt Lake City, Carson City
How can I save on my Bubble Data Base on line (two columns) for each pair… something like
Item#1
Column Key = Florida
Column Value = Tallahassee
Item#2
Column Key = Utah
Column Value = Salt Lake City
ID#3
Column Key = Nevada
Column Value = Carson City
I need to do that within a Workflow… any ideas?