Closed suchapalaver closed 3 years ago
The Gephi Export will render XML which can be processed by particular graph software, so it renders just a subset of your data.
Another way is to create a dynamic query, available in the new 0.6.x version. Simply create a query with large time bounds like this:
Save the query and export the resulting data as JSON. This will return all your nodes as JSON data.
You can also use OrientDB to llok at your data, as you mentioned. I am unsure how far you succeeded. But a rough guide would be:
bin/server.sh
for Linux)select * from Node
in the top field and select "CSV" in the options on the right (also edit limits here!):
Both of your solutions--using the newer Segrada with dynamic queries, and using orientdb-- worked! The dynamic queries is great! It was the select * from `Node`
-- I imagine this is SQL or something similar?-- that I was missing to get started displaying my data.
Thank you so much!
You are welcome! Yes, OrientDB uses some variant of SQL (among others), so it is actually quite easy to use.
Another hint: There is an undocumented XML export for GEFX via the endpoint http://localhost:8080/export/all
GEFX will not export all the data, but one can definitely use it to extract the relation data. There will be a minor update for GEFX in 0.6.1.
I used segrada on the recommendation of a friend back in 2018/2019. I entered some data from a project and had a lot of fun playing with it. Now I actually have some knowledge of things like Linux and some programming languages, but I can't figure out how I might export the data I've entered in some sort of table form. Is this possible? For example, could I somehow export a list of all my nodes? I see for example if use the export graph method I can export a .gexf file where I can see the nodes when I open the file in a text editor. It looks like this:
So it seems there must be a way to somehow export all the nodes I have. So far, I have zero joy from using orientdb to look at my data. TL;DR: I tried segrada a while back and would now like to resume the project by somehow exporting my data in a readable form back out from segrada. Thanks for any help!