Trying to load csv data onto neo4j server nodes and relationships not showing

Whether you choose the default database is correct? On other hand, you can check whether any nodes or relationships being existed in your Neo4j instance/database. Run this cypher as bellow:

match (n) return labels(n) as node_label, count(n) as node_count;

Good luck!