Hello,
I wish to get some help on my problem.
I get from my “inDataHub” node a flow of items with this kind of field:
{"FI33574732": "DropDown", "FI33574733": "Hardware | WiFi | Conferencing tool | Chat tool | Printer | Ethernet (cable network) | Company website | VPN | Intranet | Billing services | Finance services | Data Center | Other", "FI33595652": "CENTRE D'AIDE", "FI33595802": "IEADH733JUAEGCDA"}
and from the “edit field”, i get inly one item:
[{"isMirror": false, "id": "FI33574732", "title": "Type", "type": "text", "readerIds": []}, {"isMirror": false, "id": "FI33574733", "title": "Description", "type": "text", "readerIds": []}, {"isMirror": false, "id": "FI33595652", "title": "Emplacement", "type": "text", "readerIds": []}, {"isMirror": false, "id": "FI33595802", "title": "wrikeID", "type": "text", "readerIds": []}]
I need to edit each item from the first flow so in the json, the four values are changed with the title of the corresponding id from the second node.
It should be looking like this at the end:
{"Type": "DropDown", "Description": "Hardware | WiFi | Conferencing tool | Chat tool | Printer | Ethernet (cable network) | Company website | VPN | Intranet | Billing services | Finance services | Data Center | Other", "Emplacement": "CENTRE D'AIDE", "wrikeID": "IEADH733JUAEGCDA"}
I think we can’t do this kind of edit with only standards nodes like merge
I tried with the code node but with the two inputs and the wierd way n8n is allowing to use the inputs, I failed to do the edit. can someone help me please?
Thanks all