Re: [Neo4j] Newbie issues with indexing

2011-11-02 Thread Bill Baker
Got it running, thank you! -Original Message- From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of Bill Baker Sent: Wednesday, November 02, 2011 9:41 AM To: Neo4j user discussions Subject: Re: [Neo4j] Newbie issues with indexing Then I will try it

Re: [Neo4j] Newbie issues with indexing

2011-11-02 Thread Bill Baker
Then I will try it straight-up! -Original Message- From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of Mattias Persson Sent: Wednesday, November 02, 2011 9:39 AM To: Neo4j user discussions Subject: Re: [Neo4j] Newbie issues with indexing 2011/11/2 Bill

Re: [Neo4j] Newbie issues with indexing

2011-11-02 Thread Mattias Persson
t; From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] > On Behalf Of Rick Bullotta > Sent: Wednesday, November 02, 2011 8:44 AM > To: Neo4j user discussions > Subject: Re: [Neo4j] Newbie issues with indexing > > ...because you have a space character in the name. &g

Re: [Neo4j] Newbie issues with indexing

2011-11-02 Thread Bill Baker
ed quotes. Thanks everyone, I appreciate the help. -Original Message- From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of Rick Bullotta Sent: Wednesday, November 02, 2011 8:44 AM To: Neo4j user discussions Subject: Re: [Neo4j] Newbie issues with indexing

Re: [Neo4j] Newbie issues with indexing

2011-11-02 Thread Rick Bullotta
2011 3:56 AM To: Neo4j user discussions Subject: Re: [Neo4j] Newbie issues with indexing Hi Bill, Why BarName in one and FooName in the other? I'm assuming you have NodeType/Name for both ok? So... a query like this would look like: nodeIndex.query( "NodeType:Bar" AND Name:\&quo

Re: [Neo4j] Newbie issues with indexing

2011-11-02 Thread Bill Baker
discussions Subject: Re: [Neo4j] Newbie issues with indexing Hi Bill, Why BarName in one and FooName in the other? I'm assuming you have NodeType/Name for both ok? So... a query like this would look like: nodeIndex.query( "NodeType:Bar" AND Name:\"Bar 1\"" ); 2011

Re: [Neo4j] Newbie issues with indexing

2011-11-02 Thread Mattias Persson
Hi Bill, Why BarName in one and FooName in the other? I'm assuming you have NodeType/Name for both ok? So... a query like this would look like: nodeIndex.query( "NodeType:Bar" AND Name:\"Bar 1\"" ); 2011/11/1 Bill Baker > Hello, > > I have an index and add my nodes to it as I create them.

[Neo4j] Newbie issues with indexing

2011-10-31 Thread Bill Baker
Hello, I have an index and add my nodes to it as I create them. I index two properties, nodeType and nodeName. Later I want to see if a node already exists of a given type and a given name. If it does, I'll use it; otherwise I'll create it (and index it.) (All this is in the Java API.) Ind