xephtar opened a new issue, #690:
URL: https://github.com/apache/age/issues/690

   We have 6 types of nodes. There is a relation one relation between them like 
below
   
   ```
   typeOne -[REL]-> typeTwo
   typeOne -[REL]-> typeThree
   typeOne -[REL]-> typeFour
   typeOne -[REL]-> typeFive
   typeOne -[REL]-> typeSix
   ```
   
   We have a queries. They searchsall typeOne nodes like below query
   ```
   
   MATCH (:typeTwo{value:"searchingValue}) - [:REL*..100]- (node:typeOne) 
RETURN typeOne.prop
   MATCH (:typeThree{value:"searchingValue}) - [:REL*..100]- (node:typeOne) 
RETURN typeOne.prop
   MATCH (:typeFour{value:"searchingValue}) - [:REL*..100]- (node:typeOne) 
RETURN typeOne.prop
   MATCH (:typeFive{value:"searchingValue}) - [:REL*..100]- (node:typeOne) 
RETURN typeOne.prop
   MATCH (:typeSix{value:"searchingValue}) - [:REL*..100]- (node:typeOne) 
RETURN typeOne.prop
   ```
   
   It takes too much time to search. We can't search with direction because we 
want to search each typeOne node who has relations.
   
   How index should we add to make it faster?
   
   We can't change the graph because we can achieve same need with neo4j 
already.
   We want to move it AGE. Can you help us? How does index work for AGE?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to