Skip to content

Commit c012146

Browse files
Merge pull request #7358 from segmentio/spencerattick-patch-11
Add flatten function info
2 parents 872f676 + b908588 commit c012146

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/connections/destinations/actions.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,10 @@ The coalesce function takes a primary value and uses it if it is available. If t
207207

208208
The replace function allows you to replace a string, integer, or boolean with a new value. You have the option to replace up to two values within a single field.
209209

210+
### Flatten function
211+
212+
The flatten function allows you to flatten a nested object to an object with a depth of 1. Keys are delimited by the configured separator. For example, an object like {a: { b: { c: 1 }, d: 2 } } will be converted to { 'a.b.c': 1, 'a.d': 2 }.
213+
210214
### Conditions
211215

212216
> info ""

0 commit comments

Comments
 (0)