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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
parent_id
I've been trying to get this to work with a nested parent_id but I can't seem to find the solution.
Say I have:
[ { "id": "1", "attributes": { "name": "Parent", "parent_id": null, } }, { "id": "2", "attributes": { "name": "Child One", "parent_id": 1, } }, { "id": "3", "attributes": { "name": "Child Two", "parent_id": 1, } }, ]
Will arrayToTree() work in this situation?
arrayToTree()
The text was updated successfully, but these errors were encountered:
Yep, just implemented this. I used your example as a test case: https://github.com/alferov/array-to-tree/blob/master/test/test.js#L86
arrayToTree(yourData, { parentProperty: 'attributes.parent_id', });
Please update the package to the latest version (2.2.0)!
Sorry, something went wrong.
No branches or pull requests
I've been trying to get this to work with a nested
parent_id
but I can't seem to find the solution.Say I have:
Will
arrayToTree()
work in this situation?The text was updated successfully, but these errors were encountered: