-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is neededquestionFurther information is requestedFurther information is requestedtechnicalA technical issue that requires understanding of the code, infrastructure or dependenciesA technical issue that requires understanding of the code, infrastructure or dependencies
Description
Given the following structure:
%{items: [%{id: 1}, %{id: 2}], another: %{key: :value}}I would expect the following result:
%{another__key: :value, items__0__id: 1, items__1__id: 2}But we actually get:
%{another__key: :value, items: [%{id: 1}, %{id: 2}]}I wonder if we should have a flatten_list/1 and flatten_data/1 which would combine flatten_list + flatten_map.
nelsonicnelsonic
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is neededquestionFurther information is requestedFurther information is requestedtechnicalA technical issue that requires understanding of the code, infrastructure or dependenciesA technical issue that requires understanding of the code, infrastructure or dependencies