tracardi icon indicating copy to clipboard operation
tracardi copied to clipboard

Plugin: Merge data

Open atompie opened this issue 3 years ago • 1 comments

Is your feature request related to a problem? Please describe. The same plugin as copy data but it merges data instead of coping it.

Lets assume that our profile has the following traits

{
   "public": {
       "a":0,
        "c": 3
    }
}

We define:

{
  "[email protected]": {
   "a":1,
   "b": 2
  },
"[email protected],my": {
   "d": 4
}
}

and get

{
   "public": {
       "a":1,
       "b": 2,
        "c": 3,
        "my": {
            "d": 4
        }
    }
}

atompie avatar Nov 11 '22 14:11 atompie

Plugin docs: https://github.com/Tracardi/tracardi-api/blob/master/docs/flow/actions/marge_data_action.md

atompie avatar Nov 12 '22 17:11 atompie