wgmayer0 commented on issue #2129:
URL: https://github.com/apache/age/issues/2129#issuecomment-2489931740

   Excellent feedback!! Thank you!
   
   On Wed, Nov 20, 2024 at 6:13 PM tronper123 ***@***.***> wrote:
   
   > If your edges are all directed the same, you could add directed arrows,
   >
   > MATCH (a:load_number)-[]->(b:origin),
   >       (a)-[]->(c:pickup_time),
   >       (a)-[]->(d:destination),
   >       (a)-[]->(e:delivery_time)
   > RETURN a.value, b.value, c.value, d.value, e.value
   >
   > Also, if you use different labels for each connection type and specify the
   > name, that will also improve the performance
   >
   > MATCH (a:load_number)-[:orgin_label]-(b:origin),
   >       (a)-[:pickup_label]-(c:pickup_time),
   >       (a)-[:destination_label]-(d:destination),
   >       (a)-[:delivery_label]-(e:delivery_time)
   > RETURN a.value, b.value, c.value, d.value, e.value
   >
   >
   > —
   > Reply to this email directly, view it on GitHub
   > <https://github.com/apache/age/issues/2129#issuecomment-2489724062>, or
   > unsubscribe
   > 
<https://github.com/notifications/unsubscribe-auth/ARTB5TLBPTLQG43Y5EZIDFL2BUJQRAVCNFSM6AAAAABRERBAEWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIOBZG4ZDIMBWGI>
   > .
   > You are receiving this because you authored the thread.Message ID:
   > ***@***.***>
   >
   


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to