Hi

When i indexed a property with full text, the sdn 
function findAllByPropertyValue does not return any result:
personRepository.findAllByPropertyValue("person_name", "name", "David 
Yang");  //THIS DOES NOT WORKS

When find by:
personRepository.findAllByPropertyValue("person_id", "nric", "1234567"); 
 //THIS WORKS by returning 1 record

@NodeEntity
class Person{
  ...
  @Indexed (indexName = "person_name", indexType = IndexType.FULLTEXT)
  String name; //THIS DOES NOT WORKS

  @Indexed (indexName = "person_id")
  String nric; //THIS WORKS
}

interface PersonRepository extends GraphRepository<Person>, 
NamedIndexRepository<Person>{
}

Appreciate if anyone can help...

Thanks in advance
David

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to neo4j+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to