Hello,
When array uses non-primitives it renders as list of folded sections. Documentation says taht every section can be named with property by using “elementLabelProp” option.
https://lodash.com/docs/4.17.15#get
But it is unclear for me how to acces property of nested element. For example if array contains nested objects like:
{
"type": "object",
"properties": {
"nested1": {
"type": "object",
"properties": {
"nested1-name": {
"type": "string"
}
}
},
"nested2": {
"type": "object",
"properties": {
"nested2-2": {
"type": "object",
"properties": {
"nested2-2-name": {
"type": "string"
}
}
}
}
}
}
}
How to access “nested2/nested2-2/nested2-2-name”? Please provide any tip.