Moved from GitHub ratel/176
Posted by svenhartz:
How to reproduce
I created three nodes “Michael”, “Pawan” and “Leyla”. “Michael” is connected to “Leyla” with the "follows"
and the "is_friend"
edge. “Pawan” is connected to “Leyla” with the "follows"
edge.
Observed behavior
I get the following JSON output with my query
"data": {
"name": [
{
"uid": "0x1",
"name": "Michael",
"follows": {
"uid": "0x3",
"name": "Leyla"
},
"is_friend": {
"uid": "0x3",
"name": "Leyla"
}
},
{
"uid": "0x2",
"name": "Pawan",
"follows": {
"uid": "0x3",
"name": "Leyla"
}
},
{
"uid": "0x3",
"name": "Leyla"
}
]
},
The visualization looks like this:
So there is only one edge between “Michael” and “Leyla”.
Expected behavior
There should be two edges between Michael" and “Leyla”. One “follows” and one “is_friend” edge.