on a similar note,

MATCH (p:Product)<-[c:contains]-(w:Warehouse)
WHERE c.available = 1
RETURN p

is it possible to create an index on the contains relationship, and
available attribute, such that this query could lookup the index to perform
faster?



On Fri, Jan 17, 2014 at 9:47 AM, Michael Hunger <
[email protected]> wrote:

> No range queries are planned after 2.1
>
> Sent from mobile device
>
> Am 17.01.2014 um 16:38 schrieb Javad Karabi <[email protected]>:
>
> for example, i executed (once with and without index one
> :Member(birth_year) ):
>
> MATCH (m:Member)
> WHERE m.birth_year > 1980 AND m.birth_year < 2000
> RETURN m
>
> and i noticed that the time to perform the query did not change.
>
> this led me to believe that the index did not help.
> does this mean that the index does not help when performing > and < in a
> WHERE clause?
>
> --
> 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 [email protected].
>
> For more options, visit https://groups.google.com/groups/opt_out.
>
>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "Neo4j" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/neo4j/t_9WyTuI4rQ/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> [email protected].
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to