yijie_wang
10/06/2022, 10:41 PM- name: meltano-map-transformer
variant: meltano
pip_url: git+<https://github.com/MeltanoLabs/meltano-map-transform.git>
executable: meltano-map-transform
mappings:
- name: hide-address
config:
stream_maps:
users:
profile__homeContactAll: null
Here is the users object
{'id': 123, "profile": {"zipCode": "EC2V 6EE", "homeContactAll": "1 Baker St., London"}}christoph
10/07/2022, 12:24 AMyijie_wang
10/07/2022, 9:04 AM- name: meltano-map-transformer
variant: meltano
pip_url: git+<https://github.com/MeltanoLabs/meltano-map-transform.git>
executable: meltano-map-transform
mappings:
- name: hide-address
config:
stream_maps:
users:
profile__homeContactAll: "id"
homeContactAll: "id"
Below is the result
{'id': 123, "profile": {"zipCode": "EC2V 6EE", "homeContactAll": "1 Baker St., London"}, profile__homeContactAll: 123, homeContactAll: 123 }yijie_wang
10/13/2022, 12:33 PM