MatheusFarias03 opened a new issue, #81:
URL: https://github.com/apache/age-viewer/issues/81
Can AGE Viewer highlight an edge according to its property?
For example, we have a starting vertex labeled "Person" with :
```JSON
{
"id" : 12345 ,
"label" : "Person" ,
"properties" : { "key" : "value" }
}
```
An edge :
```JSON
{
"id" : 12346 ,
"label" : "bought_product" ,
"start_id" : 12345 ,
"end_id" : 12347 ,
"properties" :
{
"times_bought" : 3
}
}
```
And then another vertex (which is the product a person bought) :
```JSON
{
"id" : 12347 ,
"label" : "Product" ,
"properties" : { "type" : "Cheese Burger" }
}
```
So according to the "times_bought" property, we could show the edge in a
more intense way or maybe in a different color in comparison to other edges
where this "times_bought" property is of lesser 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]