I need to save data with "root" object to be saved into "root" table and
array "mylist" of contained objects to be saved into "mylist" table:
{
    "id": 3,
    "name": "ROOT",
    "mylist": [{
        "id": 10,
        "info": "2am-3am"
    },
    {
        "id": 11,
        "info": "3AM-4AM"
    },
    {
        "id": 12,
"info": "4am-5am"
    }]

}

 so I have to perform single "upsert" into "root" table and multiple
"upsert"s into "mylist" table from one flow... Does PutSQL support this?
Thank you

Reply via email to