[Neo4j] compound query across keys

2011-08-24 Thread sambodhi sagi
In graph repository I did not find a method which can be used to fire compound query across different keys. The available methods takes 'key' as input: graphRepository.findAllByQuery(indexname, key, query) But i my case I want to fire a query across keys. Something like code snippet below.

[Neo4j] pagination with traversal and search query results

2011-08-24 Thread sambodhi sagi
Hi!! Does Spring/Neo4j provides api to get paginated results from traversal and search queries? Many Thanks, Sambodhi ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

[Neo4j] FullText and Exact Indices in graphs

2011-08-23 Thread sambodhi sagi
Hi, I have some confusion around indices (full-text and index). Is it fine to have same index for all full-text and non-full-text (or exact) fields? or does it affect the performance? Or to put it in a different way, at what point do we separate indices? For example: I have a NodeEntity

[Neo4j] NodeBacked to Node

2011-08-22 Thread sambodhi sagi
Hi! I am facing a small problem with Spring Graph database APIs. I am not sure how to get a NodeBacked object from Node. For example, say I created a traversal description, as a result I get Node object and not the NodeBacked entity, which in my case is Product @NodeEntity public class Product {

[Neo4j] Graph database index | query across indices

2011-07-27 Thread sambodhi sagi
Hi ! I am facing some problem with indexing. My graph looks like this: Say, I want to query products for a particular category (say 'Phone,Mobiles and telecoms') AND having text 'attractive' in 'details' field. I created two indices: one for Relationship 'RelProductIndex' and one for product

[Neo4j] how to scale and view or generate reports for complex graphs?

2011-07-27 Thread sambodhi sagi
Hi Guys! I am a bit new to Graph database. I really liked the concept, graph made managing relationship between the entities relatively easy. I therefore chose to use it in my new project. I started the development two weeks back and my graph has already grown so complex with static data. I am