I am struggling to get the Official Qdrant Upsert Node to work. If you add data manually into the Point field like the example when you open it:
[
{
“id”: 0,
“payload”: {
“color”: “red”,
“age”: 32
},
“vector”: [
0.9,
0.1,
0.1
]
},
{
“id”: 1,
“payload”: {
“color”: “green”,
“age”: 55
},
“vector”: [
0.1,
0.9,
0.1
]
}
]
Then it does work. But if you put a reference to a previous node in there it adds extra that are passed to Qdrant and stop the upload. The simple workflow I have put shows basically two exactly similar routes, one is using and HTTP Put and one the Qdrant Upsert. I expected them to behave in the same way.
Can anyone advise me where I have gone wrong?