Skip to content

Only one edge is going to be visualized if two nodes have multiple edges to each other. #176

@svenhartz

Description

@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:

Screenshot from 2020-03-26 14-50-11

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.

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions