We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When unflattening something like
map[string]interface{}{ "pew.0": "woop", }
The result is
map[pew:map[0:woop]]
or as a type map[string]map[string]interface{}
map[string]map[string]interface{}
What I would expect is to be the result is
map[pew:[woop]]
or as a type map[string][]interface{}
map[string][]interface{}
Are there any plans to remedy this? Would you be willing to merge such a feature if I (or someone else) implemented it?
PS: I'm working on recursively unflattening input - I will upstream that in a PR here later :)
The text was updated successfully, but these errors were encountered:
Did you end up implementing it?
Sorry, something went wrong.
Any update on this issue? Anyone able to fix it?, maybe on a fork?
Successfully merging a pull request may close this issue.
When unflattening something like
The result is
or as a type
map[string]map[string]interface{}
What I would expect is to be the result is
or as a type
map[string][]interface{}
Are there any plans to remedy this? Would you be willing to merge such a feature if I (or someone else) implemented it?
PS: I'm working on recursively unflattening input - I will upstream that in a PR here later :)
The text was updated successfully, but these errors were encountered: