What are the available options for GraphRenderer selection_policy and inspection_policy?

I’d have to sanitize the data I’m using, it’s proprietary.

I’ve changed the options to:

graph_renderer.selection_policy = NodesOnly()
graph_renderer.inspection_policy = NodesAndLinkedEdges()

However, the edges still show up in between the nodes, and there are over 5000 nodes in the graph I’m working with. Additionally, the graph itself is super slow (much slower than the graph I created using this method), so I dunno if I’m doing something wrong with creating the graph.

Lemme work on sanitizing the data so I can show you what I’m working with