Qdrant Vector Database node

Good morning,
I am seeking information regarding the following issue.
From a webhook, I receive a PDF file and a “nome_file” field containing the file title:
json{
“body”: {
“titolo”: “Prenotazione CIE”,
“nome_file”: “Prenotazione online CIE.pdf”
}
}
I would like to add the key “nome_file”: “Prenotazione online CIE.pdf” as metadata to the Qdrant Vector Store node, so that the Points in the Qdrant database contain this information and can subsequently be filtered or deleted based on it.
I cannot figure out how to handle and pass this information to the node.
Thank you in advance for your help.

Describe the problem/error/question

What is the error message (if any)?

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hey there

You know what In n8n, metadata for the Qdrant Vector Store must be passed as part of the item’s JSON before it reaches the Qdrant node To do this, add a Set (or Code) node before the Qdrant Vector Store and explicitly include nome_filein the item JSON, for example:

{
“text”: “…document text…”,
“metadata”: {
“nome_file”: “Prenotazione online CIE.pdf”
}
}