Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
05-13-2022 07:54 AM
Please keep the following things in mind:
Please format code + Cypher statements with the code </>
icon, it's much easier to read.
Please provide the following information if you ran into a more serious issue:
PROFILE
or EXPLAIN
with boxes expanded (lower right corner)After having the model and data loaded into neo4j, how to refer the specific graph model that has nodes and relationships in neo4j browser that has man other graph models.. eg: movie graph comes
by default. The model that we created by importing csv (using data importer) will not get visualized in the browser but instead movie graph comes on.. Appreciate inputs..
05-13-2022 08:47 AM
First, welcome to the community.
Well, you will need to query for the specific nodes/relationships you want since you have mixed multiple data models in the same database. If you are just experimenting to learn, then I suggest you create different databases for each data model you are experimenting with. That way it will be much easier to query and manage the data.
You can create multiple projects in Neo4j Browser, and each of the those projects can have multiple databases.
You can also clear all the data in a database with the query below. You can do that and then reload the data you want to visualize. Once you do that, you can run match(n) return n
to see all the data in the database.
To delet all data:
match(n)
detach delete n
05-13-2022 06:56 PM
Thank you very much for the input. Will try this. Meanwhile , wanted to know since we save the data model ( json) from the importer,
so wanted to know how to use this for querying and for data science.
Regards
Ramesh
05-13-2022 07:11 PM
You will not use the json from the data modeler after you import the data into neo4j.
You use the cypher query language to interact with the data.
You can start here to learn cypher:
You can also take graphAcademy classes. There is a cypher fundamentals class:
A neo4j fundamentals class:
And you can learn more about graph data sciences here:
05-25-2022 04:47 AM
Hello
Currently I have used Aura cloud and used Data importer to load my data from Mysql
and have created the graph data model. I am able to query the model. Now I want to use GDS to run graph algorithms.
Pl let me know how to go about .
Regards
Ramesh
05-25-2022 09:02 AM
I am not a user of GDS at this point. It looks like you need AruaDS, instead AruaDB.
05-25-2022 09:15 PM
Thanks. AuraDS instance is not free. I want to plug-in GDS library to the database in aura cloud so that I can run graph
algorithms in neo4j browser or using python client. With Neo4j desktop , i could plug in gds and apoc . I am some how
finding it difficult to use ETL to load and create the graph data model which easily was done using data importer in Aura cloud.
Can data importer be used with Neo4j desktop. Appreciate some inputs
All the sessions of the conference are now available online