-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
attributes with dots #4
Comments
I see from the json documentation that it's possible to
maybe something's possible using that? |
that link doesn't resolve for me. can you cut/paste a diff and reply? On Fri, Jan 29, 2016 at 11:26 AM, Fabien Wernli [email protected]
|
I updated the solution but didn't upload it yet I'll make a PR asap |
Since ES2.x dots are not allowed in field names:
The natural way to handle this would IMHO be to coerce
foo.bar = "baz"
into{"foo": {"bar" : "baz"}}
.The problem is I'm not very good at clojure, so I'm kindly asking if this is a feature which would seem interesting and if somebody would be willing to point me into the right direction.
What scares me most is the need to handle this recursively. But isn't list all about recursion?
The text was updated successfully, but these errors were encountered: