Data output. Nested array in json

(work4egor) #1

When a http-request is made, the server returns a response with nested arrays. What syntax should I use to display all the title parameters?

Current variable look like this, {{make_a_http_request.data__results__0__properties__Entered__title__0__text__content &&}}
but on output i have only first title - “Тема 2”

{
  "results": [
    {
      "properties": {
        "Entered": {
          "title": [
            {
              "type": "text",
              "text": {
                "content": "Тема 2",
                "link": null
              },
            }
          ]
        }
      },
    },
    {
      "properties": {
        "Entered": {
          "title": [
            {
              "type": "text",
              "text": {
                "content": "Тема 1",
                "link": null
              },
            }
          ]
        }
      },
    }
  ],
}