Yes my first post, both examples do exactly that JOIN multiple SPLIT to combined object - #3 by E1cid
as does this
[{"id":"3faa320b53878b27","type":"inject","z":"613df62afc8a16bf","name":"Trigger","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"null","payloadType":"json","x":70,"y":920,"wires":[["c37d5112e83db7bc"]]},{"id":"c37d5112e83db7bc","type":"change","z":"613df62afc8a16bf","name":"DataSource A","rules":[{"t":"set","p":"payload","pt":"msg","to":"[{\"date\":\"2022-01-01T01:00:00.000Z\",\"x\":1},{\"date\":\"2022-01-01T02:00:00.000Z\",\"x\":2}]","tot":"json"}],"action":"","property":"","from":"","to":"","reg":false,"x":220,"y":920,"wires":[["aada9533076c0c1b"]]},{"id":"aada9533076c0c1b","type":"change","z":"613df62afc8a16bf","name":"","rules":[{"t":"move","p":"payload","pt":"msg","to":"a","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":370,"y":880,"wires":[["91dc074a0491e77e"]]},{"id":"91dc074a0491e77e","type":"change","z":"613df62afc8a16bf","name":"Datasource B","rules":[{"t":"set","p":"payload","pt":"msg","to":"[{\"date\":\"2022-01-01T01:00:00.000Z\",\"y\":1.234},{\"date\":\"2022-01-01T02:00:00.000Z\",\"y\":2.456}]","tot":"json"}],"action":"","property":"","from":"","to":"","reg":false,"x":510,"y":920,"wires":[["ca7dde831c6c3c73"]]},{"id":"ca7dde831c6c3c73","type":"split","z":"613df62afc8a16bf","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","property":"payload","x":670,"y":920,"wires":[["ccb2fc45bb27acd0"]]},{"id":"ccb2fc45bb27acd0","type":"change","z":"613df62afc8a16bf","name":"","rules":[{"t":"set","p":"payload.x","pt":"msg","to":"a[msg.parts.index].x","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":210,"y":980,"wires":[["7f77ad6401d051a3"]]},{"id":"7f77ad6401d051a3","type":"join","z":"613df62afc8a16bf","name":"","mode":"auto","build":"object","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","useparts":false,"accumulate":true,"timeout":"","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":410,"y":980,"wires":[["779056206a294578"]]},{"id":"779056206a294578","type":"debug","z":"613df62afc8a16bf","name":"debug 35","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":600,"y":980,"wires":[]}]
and this , but this looks up the date specifically and does not rely on parts.index.
[{"id":"3faa320b53878b27","type":"inject","z":"613df62afc8a16bf","name":"Trigger","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"null","payloadType":"json","x":70,"y":920,"wires":[["c37d5112e83db7bc"]]},{"id":"c37d5112e83db7bc","type":"change","z":"613df62afc8a16bf","name":"DataSource A","rules":[{"t":"set","p":"payload","pt":"msg","to":"[{\"date\":\"2022-01-01T01:00:00.000Z\",\"x\":1},{\"date\":\"2022-01-01T02:00:00.000Z\",\"x\":2}]","tot":"json"}],"action":"","property":"","from":"","to":"","reg":false,"x":220,"y":920,"wires":[["aada9533076c0c1b"]]},{"id":"aada9533076c0c1b","type":"change","z":"613df62afc8a16bf","name":"","rules":[{"t":"move","p":"payload","pt":"msg","to":"a","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":370,"y":880,"wires":[["91dc074a0491e77e"]]},{"id":"91dc074a0491e77e","type":"change","z":"613df62afc8a16bf","name":"Datasource B","rules":[{"t":"set","p":"payload","pt":"msg","to":"[{\"date\":\"2022-01-01T01:00:00.000Z\",\"y\":1.234},{\"date\":\"2022-01-01T02:00:00.000Z\",\"y\":2.456}]","tot":"json"}],"action":"","property":"","from":"","to":"","reg":false,"x":510,"y":920,"wires":[["ca7dde831c6c3c73"]]},{"id":"ca7dde831c6c3c73","type":"split","z":"613df62afc8a16bf","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","property":"payload","x":670,"y":920,"wires":[["ccb2fc45bb27acd0"]]},{"id":"ccb2fc45bb27acd0","type":"change","z":"613df62afc8a16bf","name":"","rules":[{"t":"set","p":"payload.x","pt":"msg","to":"$$.a[$.date = $$.payload.date].x","tot":"jsonata"}],"action":"","property":"","from":"","to":"","reg":false,"x":210,"y":980,"wires":[["7f77ad6401d051a3"]]},{"id":"7f77ad6401d051a3","type":"join","z":"613df62afc8a16bf","name":"","mode":"auto","build":"object","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","useparts":false,"accumulate":true,"timeout":"","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":410,"y":980,"wires":[["779056206a294578"]]},{"id":"779056206a294578","type":"debug","z":"613df62afc8a16bf","name":"debug 35","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":600,"y":980,"wires":[]}]