Imagine looking at the following nested JSON structure:
[
{
"Option1Value": 1,
"Options2": [
{
"Option2Value": 2,
"Options3": [
{
"Option3Value": 3,
"Options4": [
{
"Option4Value": 4,
"Options5": [
{
"Option5Value": 5,
"Product": [
{
"title": "text"
}
]
}
]
}
]
}
]
}
]
}
]
Now in JavaScript, you might wonder: Can I retrieve only the Options3 nodes by specifying something like Option1Value[value=1].Options2.Option2Value[value=2].Options3?
However, what you actually need to do is Option1Value[0].Options2.Option2Value[0].Options3.
Is there a solution for this?