cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Forum Posts

Beta Opportunity for Neo4j Workspace

Introducing Neo4j Workspace We’re inviting you to check out Neo4j Workspace. Workspace combines our most powerful graph tools (Data Importer, Bloom, and Browser) all in one place to help you get up and running with graph databases faster. For experie...

Screen Shot 2022-10-14 at 12.48.07 PM.png
TrevorS by Community Team
  • 976 Views
  • 1 replies
  • 0 kudos

About the Neo4j Graph Platform Category

The Neo4j Graph Platform includes the core database and all the technologies surrounding the database, making it useful and accessible for a lot of different users. When asking a question, please select a descriptive label that best matches your quer...

Neo4j-graph-database-to-graph-platform.png
yolande by Community Team
  • 1199 Views
  • 1 replies
  • 1 kudos

Resolved! Nodes are not creating in neo4j

Hi All, I am trying to create a node in neo4j browser and however I am not able to create nodes, Below is the query I executed, LOAD CSV WITH HEADERS FROM "file:///email_logs.csv" AS row MERGE (p1:Username {mail_id: row.sender}) MERGE (p2:Username {m...

2X_5_5ecc8e581ed4650c5fddb4ded373da76aadd33e1.png

Neo4j Browser Not installed

Hi All, Suddleny my browser stops working on my desktop version , it says "Neo4j Browser Not installed". Can nay one help me please, while I am able to use the same in chorme browser. Thanks, Varun

2X_4_4524c914df011bd272e4187e86df1726dfb812fc.png

Resolved! WITH WHERE OPTIONAL problem

Hi! I've got some problems to get the OPTIONAL MATCH to work when using the WITH and WHERE operators. To simplify my complex query I have created the below example. I would like to return all Cats (a) and all persons (p) for whom all friends are bffs...

Use node-data in relation

I just started with neo4j and did some research, but couldn't find any satisfying solution for the following: Create (p1:Person{name:'Max'}) Create (p2:Person{name:'Sarah'}) Create (sc:Company{name:'SuperCompany'}) Create (su:University{name:'Some Un...

2X_d_dca0a5be325331fb69d32d05a06c968ac387db9c.png
Thorsten by Node Link
  • 1289 Views
  • 2 replies
  • 1 kudos

Obtain separate graph for each mapping

I have a neo4j database with hundreds of nodes. I want to ask a query to return a graph of a particular pattern. It returns me all the possible mappings in just one result for the asked query. For example, if there are two possible mappings for a que...

Memory Config for large import

I am trying to import 75GB worth of CSV's using the neo4j-admin import tool. My initial settings were as follows (memory.pagecache.size was left at default): dbms.memory.heap.max_size=10g When I ran the import, the following occurred (see screenshot)...

2X_1_18923c3304d0a4be488fac6a32bc808190d82f82.png

Resolved! Suggest Actors Query

Why do the following two queries produce different results with respect to the actor's names? In the second one I am just collecting all the movie titles and for some reason, the actor names change. match (keanu:Person{name:"Keanu Reeves"})-[:ACTED_I...

rcfro2 by Node Clone
  • 849 Views
  • 1 replies
  • 2 kudos

Data type on import

For neo4j-admin import, if I have a header file that looks like this: userid:ID,zipcode:int Is there any way I can cast my userID as long? Perhaps in the relationship file? Something like this :START_ID:long, :END_ID:long The userIDs are rather lengt...