79579130

Date: 2025-04-17 11:26:04
Score: 0.5
Natty:
Report link

A workaround would be to do:

MATCH (n:Movie|Person)
SET n:MultiLabel;

CREATE VECTOR INDEX multiLabelIndex
IF NOT EXISTS
FOR (n:MultiLabel) ON (n.text)
OPTIONS {
  indexConfig: {
    'vector.dimensions': 1536,
    'vector.similarity_function': 'cosine'
  }
};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Christoffer Bergman