bravius commented on issue #2129:
URL: https://github.com/apache/age/issues/2129#issuecomment-2475082095
You have a couple of duplicate match clauses, this would be more concise:
```
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
```
--
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]