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:
neo4j version, desktop version, browser version
what kind of API / driver do you use
screenshot of PROFILE or EXPLAIN with boxes expanded (lower right corner)
a sample of the data you want to import
which plugins / extensions / procedures do you use
neo4j.log and debug.log
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..
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.
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.