MonkeyBonkey
MonkeyBonkey

Reputation: 47921

can't do a full text index query in cypher with neo4j 2.0 m03

This query used to work in 1.9

start parents=node:app_fulltext(Name = 'Temple') return parents;

However in 2.0 m3 it doesn't return any results. However if I put this into the data browser I get results.

node:index:app_fulltext:Name:Temple

What am I doing wrong, is 2.0 m3 just broken in terms of querying by full text index?

Upvotes: 1

Views: 185

Answers (1)

Andres
Andres

Reputation: 1454

That's not at all expected. Your old indexes should work just fine.

Have you looked through your logs? Did anything unexpected happen during the upgrade?

Upvotes: 1

Related Questions