selendym commented on issue #289:
URL: https://github.com/apache/age/issues/289#issuecomment-1245143399
Ok, thanks for the info.
Perhaps something like this could be worth considering:
```sql
select create_vertices('g', id, label, properties) from (select id, label,
properties from (...)) as r;
select create_edges('g', id, label, start_id, end_id, properties) from
(select id, label, start_id, end_id, properties from (...)) as r;
```
where `'g'` is the graph name and `properties` would be in json, for example.
Would you prefer this issue be closed or left open?
I'm inclined to leave it open for now and see if a review leads to something
in the future.
--
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]