Pieterjan De Potter

Results 21 comments of Pieterjan De Potter

Is this related to [this](https://github.com/codeboost/opencv-node/pull/3) pull request (for installation under linux)?

I don't think such a workflow currently exists. There is already a discussion on this subject at https://github.com/apache/incubator-age/issues/132

I understood the question as "How can I attach properties and values to a vertex if I don't know the properties beforehand". Are the properties predefined (e.g., the user can...

Example for the second solution: Create person nodes ``` SELECT * FROM ag_catalog.cypher( 'people', $$ CREATE (a:Person {data:{name:'Jane', 'age': 35}}) $$ ) as (a ag_catalog.agtype); a --- (0 rows) SELECT...

I think this issue has been resolved, I close the issue.

It would indeed be very useful to enable the creation of constraints / indexes. This could help to accelerate the creation of edges between nodes that were added earlier, which...

I tried using id() instead of using properties for matching, but this was even slower (I noticed using an additional `WHERE` clause instead of defining properties in the `MATCH` clause...

There is a (1000 times faster) workaround for the creation of edges between vertices that were added earlier. The workaround consists of inserting the data directly in the underlying tables...

When the edges are inserted in the specific edge table, they are automatically added to the `_ag_label_edge` table, reducing the workaround to the following and making the relation creation even...

This is great, thank you! Since indices require an immutable function, an additional function will still need to be created for them. When I create a `get_id` function with ```...