Syntax
DEEP_MERGE(object, object, ...)
Usage examples
Example 1
Input | 1 { 2 "object_1": { 3 "location": { 4 "city": "Dublin" 5 } 6 }, 7 "object_2": { 8 "location": { 9 "country": "Ireland" 10 } 11 } 12 } |
Formula | DEEP_MERGE(object_1, object_2) |
Output | 1 { 2 "location": { 3 "city": "Dublin", 4 "country": "Ireland" 5 } 6 } |
Example 2
Input | 1 { 2 "object_1": { 3 "location": { 4 "city": "Dublin" 5 } 6 }, 7 "object_2": { 8 "location": { 9 "city": "Cork" 10 } 11 } 12 } |
Formula | DEEP_MERGE(object_1, object_2) |
Output | 1 { 2 "location": { 3 "city": "Cork" 4 } 5 } |
Sample Actions
Event Transform
DEEP MERGE
Event Transform
My Action
Select an Action to inspect.
You can also click "Copy Actions" and paste them in your Tines Story to see how they work.