I am facing an issue accessing the second array within an array getting json from an API call,
Bubble returns(recognizing) the first array within the array, not the second one.
As shown in the picture,
there are two arrays within an array, but the bubble is just returning 1st array in editor, not the second one.
The issue is that both arrays have different type of objects,
like
first array have object like
{
“id”: 4,
“group”: “size”,
“name”: “3.5 x 2”,
“hidden”: 0
}
and the object in second array is like
{
“hash”: “433c8b0154e6904b0b94455c21bdb3cf”,
“value”: “0”,
“markup”: 0
}
and bubble detected the key value pair of object of first array, and if I try to display second array, it show nothing.
That the critical error bubble needs to solve it, and please note that I’m not a beginner bubble developer.