False pinned data error in workflow

Hello n8n community!

I’m trying to get this workflow to work, which has a webhook from a Baserow database that listens for any changes, processes the data, and then posts it to WooCommerce. But I’m stuck due to an error in my “Img and Attr parsing” node that says:

“Using the item method doesn’t work with pinned data in this scenario. Please unpin ‘Concatenate Image IDs2’ and try again. [line 18]”

However, I don’t have my “Concatenate Image IDs2” node pinned. Could someone help me with this issue?

Thanks in advance!

Trying to paste the code but is too long!

Same. i have this issue too

Hey, @piam6, thank you for your question. Can you try doing these and see if it resolves your issue?

Check for Pinned Data in Upstream Nodes:

  • Go through all the nodes leading up to Img and Attr parsing and ensure none of them have pinned data.

  • If any node has pinned data, unpin it.

  • Manually Unpin and Repin Nodes:

  • Try unpinning all nodes in the workflow, even those that seem unrelated.

  • Then, re-run the workflow to check if the error persists.

  • Check for Direct References to .item:

  • In your “Img and Attr parsing” node, look for any references to .item. If you are using items[i].json instead, try changing it to this.getNodeParameter(...) instead.

I found a solution to the issue I was facing!
All I had to do was delete all logs with the status “error” and unpin everything. After that, everything worked fine again.

Hope this helps someone else!

Nice :slight_smile: glad you got it working good to know ty