Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 522 Bytes

transform_mapping_expressive.md

File metadata and controls

19 lines (14 loc) · 522 Bytes

Transform Mapping: Expressive

Based on the Expression Language Component

If a field is missing from a line in the upfront data, it will default to null.

example:

['city' => 'Paris', 'country' => 'France'],
['city' => 'New-York' /* Missing country */],

// Will result in
['city' => 'Paris', 'country' => 'France'],
['city' => 'New-York' 'country' => null],

No options for this component.