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
Currently, if we ever have data like this
{ Contact: { Address: 0, Phone: 0 } }
and when we try this import-export plugin, it returns it in this form:
Contact {Address:0,Phone:0}
This is good, but making it return like this would be better:
Contact.Address, Contact.Phone 0, 0
Your issue would be to convert it to this.
The text was updated successfully, but these errors were encountered:
Check this for reference: https://stackoverflow.com/questions/33005575/how-to-convert-json-object-structure-to-dot-notation
Sorry, something went wrong.
Also check out: EdisonPeM#65
No branches or pull requests
Currently, if we ever have data like this
and when we try this import-export plugin, it returns it in this form:
This is good, but making it return like this would be better:
Your issue would be to convert it to this.
The text was updated successfully, but these errors were encountered: