Can't access to all objects in variable selector

Describe the issue/error/question

Hello, I would like to know why I can’t access to others objects in Variable selector ? I send the results of a merge block so I have 3 objects, but in the variable selector I can only see the first one and not the others.

Share the output returned by the last node

[
  {
    "id": "....",
    "name": "Daily ..",
    "url": "https://www.notion.so/...",
    "property_type": null,
    "property_date_de_cr_ation": "2022-06-04T15:40:00.000Z",
    "property_output": "",
    "property_is_error": false,
    "property_error_level": null,
    "property_input": "[Automatic Execution]",
    "property_tags": [
      ""
    ],
    "property_name": "Daily"
  },
  {
    "weather": [
      {
        "id": 800,
        "main": "Clear",
        "description": "ciel dégagé",
        "icon": "01d"
      }
    ],
    "base": "stations",
    "main": {
      "temp": 27.86,
      "feels_like": 28.05,
      "temp_min": 26.69,
      "temp_max": 28.86,
      "pressure": 1015,
      "humidity": 47
    },
    "visibility": 10000,
    "wind": {
      "speed": 2.06,
      "deg": 140
    },
    "clouds": {
      "all": 0
    },
    "dt": 1654356815,
    "sys": {
      "type": 1,
      "id": 6553,
      "country": "",
      "sunrise": 1654314103,
      "sunset": 1654371751
    },
  },
  {
    "success": true
  }
]

So you see, in this result, I have 3 objects but in the variable selector, for the next bloc (a Notion block in just after the merging block and is linked to it)

image
Here is the blocks (the error in the Notion block is just because they can’t find variables)
image
Then, here is the variable selector, for privacy I did not deployed the object but I only one object.

Information on your n8n setup

  • n8n version: 0.179.0
  • Database you’re using (default: SQLite): SQlite
  • Running n8n with the execution process [own(default), main]: own
  • Running n8n via [Docker, npm, n8n.cloud, desktop app]: Docker

Welcome to the community @Quentinus!

Yes, that is currently sadly how the UI works. There is an upcoming feature in the next weeks that will help with that issue.

For now is a possible workaround (next to changing the expression manually) to temporarily add an “Item Lists” node and change the order of the items.

Thank you ^^

Ho ok I see, I will wait until we can use multiple objects in variables selector, it’s fine ^^

Thank you for you answer :slight_smile: