Hello everyone, I'm a novice of graph databases so I hope that my question can make sense to you.
I have created a graph using neo4j, now I'm using Data Explorer for Neo4j to customize its presentation behond what is possible with the default neo4j explorer, but that tool saves the presentation on the client or on a Github Gist.
I want to embed the presentation changes I make (for example, if a certain arc of the graph is dotted) directly inside the neo4j database, so that every user connecting to the database (assuming that they all use the same client and that the presentation customizations are supported by that client) will see the exact same presentation.
How should I accomplish that? It'd be somewhat similar to having HTML and CSS, the CSS goes hand-in-hand with the HTML, it cannot happen that someone opening a website sees it with the CSS and some without it (it could happen, but for simplicity's sake let's assume it can't). Moreover, if two users are using the same browser, the CSS is rendered equally, but if two different browsers are used, it's possible that the CSS produces different outputs.
Thank you very much!!