Re: [Neo4j] Querying a full text index

2011-09-12 Thread espeed
days ago Marko updated Gremlin so you can pass in multiple element IDs like this: g.v(1,2,3,4,5,6,7,8) See https://groups.google.com/d/topic/gremlin-users/JjOopbFDHMw/discussion - James -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Querying-a-

Re: [Neo4j] Querying a full text index

2011-09-12 Thread Peter Neubauer
Yaniv, there is an example of this in the docs, http://docs.neo4j.org/chunked/snapshot/rest-api-indexes.html#rest-api-find-node-by-query shoing the ~ operator in action. HTH! Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http

Re: [Neo4j] Querying a full text index

2011-09-08 Thread Romiko Derbynew
Remember that the default match is 0.5 e.g director~0.5 hence why it matches up to two letter differences e.g ditectof, directors etc Sent from my iPhone On 08/09/2011, at 5:10 AM, "Yaniv Ben Yosef" wrote: > Hi Axel, > > I've read the syntax, which is why I was surprised. There are wildcard >

Re: [Neo4j] Querying a full text index

2011-09-07 Thread Yaniv Ben Yosef
Hi Axel, I've read the syntax, which is why I was surprised. There are wildcard options in the syntax, e.g.: test* and test? and even te*st. So I would expect that [director*] should return director and directory. [director], if I understand the syntax correctly, should return just director. But a

Re: [Neo4j] Querying a full text index

2011-09-07 Thread Yaniv Ben Yosef
would be significantly easier. > > > From: user-boun...@lists.neo4j.org [user-boun...@lists.neo4j.org] On > Behalf Of Yaniv Ben Yosef [yani...@gmail.com] > Sent: Wednesday, September 07, 2011 6:16 AM > To: Neo4j user discussions > Subject: [Neo4j] Querying a full

Re: [Neo4j] Querying a full text index

2011-09-07 Thread Axel Morgner
Hi Yaniv, didn't try your case, just read the code. If I remember correctly, it may help to expand your search term "director john" into a Lucene query, e.g. something like "\"director\" OR \"john\"". The complete Lucene query syntax see [1]. Greetings Axel [1] http://lucene.apache.org/java/

Re: [Neo4j] Querying a full text index

2011-09-07 Thread Rick Bullotta
iscussions Subject: [Neo4j] Querying a full text index Hi, This question may be Lucene related, but since I'm using it via Neo4J I'm asking here first. I'm using Neo4J 1.4 M06. I have a graph representing people, with a few properties about each person (e.g., their name and jo

[Neo4j] Querying a full text index

2011-09-07 Thread Yaniv Ben Yosef
Hi, This question may be Lucene related, but since I'm using it via Neo4J I'm asking here first. I'm using Neo4J 1.4 M06. I have a graph representing people, with a few properties about each person (e.g., their name and job title). Now I'd like to create a search form that will allow the user to e