Hi michael, thx for the reply. ok, if this is the new way to index: graphdb.index().forNodes(indexName).add(node,field,value) . What about the lucene fulltext search and the query search. What i need at end of the day, is to index data using java. and then using the rest api to search for nodes.
My old way: IndexService index = new LuceneIndexService(graphDb); IndexService fulltextindex = new LuceneFulltextIndexService(graphDb); index.index(tempSectorNode, index_name, value); fulltextindex.index(tempSectorNode, index_name, value); New way: graphdb.index().forNodes(indexName).add(node,field,value) fulltext ??? I was informed that a non-exact search is not yet available thru rest api. so i was building an extension to do so. Thx again Michael and appreciate your help. ----- Regards, Francois Kassis. -- View this message in context: http://neo4j-user-list.438527.n3.nabble.com/Neo4J-Rest-server-API-tp2559737p2560303.html Sent from the Neo4J User List mailing list archive at Nabble.com. _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

