Re: [Neo4j] How to use RelationshipIndex'es in a Cypher Query?

2011-09-24 Thread Peter Neubauer
Thanks! /peter Sent from my phone. On Sep 24, 2011 5:08 PM, "st.pa" wrote: > > done. > > --> https://github.com/neo4j/community/issues/30 > > > 24.09.2011 16:15, Peter Neubauer wrote: >> Hi there, >> Maybe you can create an issue so we can track it? >> >> /peter >> >> Sent from my phone. >> On S

Re: [Neo4j] How to use RelationshipIndex'es in a Cypher Query?

2011-09-24 Thread st.pa
done. --> https://github.com/neo4j/community/issues/30 24.09.2011 16:15, Peter Neubauer wrote: > Hi there, > Maybe you can create an issue so we can track it? > > /peter > > Sent from my phone. > On Sep 24, 2011 3:52 PM, "Andres Taylor" > wrote: >> Right now it's not possible. It's a planned fe

Re: [Neo4j] How to use RelationshipIndex'es in a Cypher Query?

2011-09-24 Thread Peter Neubauer
Hi there, Maybe you can create an issue so we can track it? /peter Sent from my phone. On Sep 24, 2011 3:52 PM, "Andres Taylor" wrote: > Right now it's not possible. It's a planned feature, but it's not done. > > It will not make into 1.5. That's all I know right now. > > Sorry, and thanks for y

Re: [Neo4j] How to use RelationshipIndex'es in a Cypher Query?

2011-09-24 Thread Andres Taylor
Right now it's not possible. It's a planned feature, but it's not done. It will not make into 1.5. That's all I know right now. Sorry, and thanks for your patience and feedback! Andrés On Sat, Sep 24, 2011 at 3:45 PM, st.pa wrote: > Ahoy > and thx, that is helpful. > but here comes yet anot

Re: [Neo4j] How to use RelationshipIndex'es in a Cypher Query?

2011-09-24 Thread st.pa
Ahoy and thx, that is helpful. but here comes yet another newbie question. is it possible to do smth like the following START source = (nodeIndexSources,querySources), target = (nodeIndexTargets,queryTargets) MATCH (source)-![:unwantedRelationshipType]->(target) RETURN source,target where

Re: [Neo4j] How to use RelationshipIndex'es in a Cypher Query?

2011-09-23 Thread Andres Taylor
On Thu, Sep 22, 2011 at 5:23 PM, st.pa wrote: > but what about regexes in the START clause where lookup of some > nodeIndex with *-wildcard already takes place. this is obviously not > pure regex, and I did not find documentation on what other wildcards are > allowed or how to search for literal

Re: [Neo4j] How to use RelationshipIndex'es in a Cypher Query?

2011-09-22 Thread st.pa
Ahoy, I'll answer inline too. 22.09.2011 10:51, Andres Taylor wrote: > HI there, > > Answers inline, > > On Wed, Sep 21, 2011 at 8:16 PM, st.pa wrote: > >> Hi, >> I've got a Cypher query with some 10k possible source nodes and some 10k >> intended target nodes out of some 1M possible target node

Re: [Neo4j] How to use RelationshipIndex'es in a Cypher Query?

2011-09-22 Thread Andres Taylor
HI there, Answers inline, On Wed, Sep 21, 2011 at 8:16 PM, st.pa wrote: > Hi, > I've got a Cypher query with some 10k possible source nodes and some 10k > intended target nodes out of some 1M possible target nodes which looks > something like the following: > > START source = (indexSourceNodes,

[Neo4j] How to use RelationshipIndex'es in a Cypher Query?

2011-09-21 Thread st.pa
Hi, I've got a Cypher query with some 10k possible source nodes and some 10k intended target nodes out of some 1M possible target nodes which looks something like the following: START source = (indexSourceNodes,"*"), target = (indexTargetNodes,"propertyTwo:*.txt") MATCH (source)-[:needsTh