Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why does a Graph sometimes look mixed up and sometimes it's normal again? #20845

Open
l3ifk opened this issue Apr 15, 2024 · 0 comments
Open
Labels
3 Graph Graph query engine 3 UI ArangoDB Web Interface (frontend/Aardvark)

Comments

@l3ifk
Copy link

l3ifk commented Apr 15, 2024

Sometimes when opening the Graph UI in the Web UI the Graph looks like this:
image
Other times it's with enough space between each node and in general more tidy so you can see each edge and node.
I create the Graphs with Python like this:

class FullGraph(Graph):
        _edgeDefinitions = [EdgeDefinition('New', ['Saga', 'Epic'], ['Epic', 'Story', 'Task', 'Defect', 'Sub_task']),
                            EdgeDefinition('Open', ['Saga', 'Epic'], ['Epic', 'Story', 'Task', 'Defect', 'Sub_task']),
                            EdgeDefinition('In_Progress', ['Saga', 'Epic'], ['Epic', 'Story', 'Task', 'Defect', 'Sub_task']),
                            EdgeDefinition('In_Specification', ['Saga', 'Epic'], ['Epic', 'Story', 'Task', 'Defect', 'Sub_task']),
                            EdgeDefinition('Resolved', ['Saga', 'Epic'], ['Epic', 'Story', 'Task', 'Defect', 'Sub_task']),
                            EdgeDefinition('Closed', ['Saga', 'Epic'], ['Epic', 'Story', 'Task', 'Defect', 'Sub_task'])]
        _orphanedCollections = []
 full_graph = issue_database.createGraph(name="FullGraph", createCollections=False, replicationFactor=3)

After editing something in the Graph Settings like the Depth for example and applying to Reload the Graph, it goes back to normal and stays that way until it, seemingly, random breaks again.
Thanks in advance!

@dothebart dothebart added 3 UI ArangoDB Web Interface (frontend/Aardvark) 3 Graph Graph query engine labels Apr 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3 Graph Graph query engine 3 UI ArangoDB Web Interface (frontend/Aardvark)
Projects
None yet
Development

No branches or pull requests

2 participants