Baserow getAll results duplicate instead looping

Why is it not looping?

There is no error message.

My workflow:

Node output

[
{
"id": 1,
"order": "1.00000000000000000000",
"Name": "Tesla",
"Notes": "Tesla makes car"
},
{
"id": 1,
"order": "1.00000000000000000000",
"Name": "Tesla",
"Notes": "Tesla makes car"
}
]

Expected output

[
{
"id": 1,
"order": "1.00000000000000000000",
"Name": "Tesla",
"Notes": "Tesla makes car"
},
{
"id": 2,
"order": "2.00000000000000000000",
"Name": "Amazon",
"Notes": "Amazon delivers stuff"
}
]

My n8n setup:

  • n8n version 0.163.1:
  • Running n8n via Cloudron on Digital Ocean:

Hi @hofocihe welcome to the community :tada:

To be honest, I do not know why it is not looping. However, I thing I know how you can get the expected result, being:

The workflow is a little more complex …

And a copy of the workflow …

1 Like

Thank you @dickhoning ! At least for now, I get the data I need using your alternative solution and I learn something new. Hopefully the Baserow node will get fixed in the future.

Hey @hofocihe,

That is strange, looking at the code for the Baserow node it looks like it should support multiple inputs.

I will take a look at this later today if no gets there before me.

@Jon This issue is still happening. If multiple items are fed at once it will output the first result to all the items.

Had to use the Split In Batches method to workaround this.

Best!
Tiago

Hey @Tiago_R,

Do you have an example workflow so I can see what you are doing?

Hey @Jon , let me see if I can post it clearly:

First and 2nd adid exist, the 3rd doesn’t.

The search always retrieves the 1st result as the result for every item.

When I mouse over the 3rd adid, it’s clear it’s correctly set as it changes the “Value” on the baserow filter:

Hey @Tiago_R,

That is perfect, It was the filters and other options not looping correctly. I have just put in a fix for this which can be found below and should be available in the next release assuming it gets reviewed today / tomorrow.

1 Like

New version [email protected] got released which includes the GitHub PR 5519.

2 Likes