Hi,
I want to create a full-text index for nodes that contains specific labels
For example index for nodes with labels: FOOD and FRUITS
I tried something like:
CALL db.index.fulltext.createNodeIndex("foodIndex", ['FOOD', 'FRUITS'], ['content']);
but ...