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
  • 922 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
  • 1164 Views
  • 1 replies
  • 1 kudos

How to set apoc.import.file.enable=true?

i use desktop version 4.2.1 in neo4j.I want to import the json file. it is showing me the error -- Neo.ClientError.Procedure.ProcedureCallFailed Failed to invoke procedure apoc.import.json: Caused by: java.lang.RuntimeException: Import from files not...

3X_a_5_a560679a73624959a19ba05e754b1d8cf62eab9a.jpeg

Resolved! Fastest way to load data in neo4j using python

Hi, i have csv files with fairly large number of rows(<10M for now). I have to read that csv and create nodes and relationships among them in neo4j. I'm using pandas for csv data manipulation and py2neo for node and relation creation. But the problem...

String to date conversion

Am facing an issue to parse a String to Date, String is "2021-03-12T09:14:38.353+00:00", I need to fetch data between some dates, for that, I need to parse this string to Date. Any help will be appreciated.

Resolved! Link nodes hierarchically during LOAD CSV

Hi everyone, I reach you out because I have a problem I have a CSV file I'm getting from an export that is structured as follows: L1 | L2 | L3 | L4 | ... id1 | | | | ... | id2 | | | ... | id3 | | | ... ...

Unable to load json through APOC JsonParseException

Hello, Some details on Config: Neo4j Browser version: [4.2.6] Neo4j Server version: [4.2.1] Question: I am trying to upload a json file into neo4j browser. However, the following error is throwing up. Also, the file that I am trying to upload is thi...

3X_c_c_cc97024e3c47a2d71bde5f4438655b1537cf52b0.png

Graph Data Modeling Question

neo4j specifications: dbms.memory.heap.initial_size=24G dbms.memory.heap.max_size=24G dbms.memory.pagecache.size=8G neo4j version: Community 4.2.0 desktop version: 1.3.11 Hello, How can I improve on my data model to reduce the number of relationships...

2X_1_16fd53bdbcce1e948dc4c4a26ce98dde562c02d3.png 2X_5_5447ee7a7ac2b7bc96625a2eee9be933211d188d.png 2X_c_c779e3587cf9ef3ad5cb04e19ec9f92255bd1d22.jpeg 2X_0_025dec75d2c5df6304c7b4a53d129f32dcfe8735.jpeg
TonyOD27 by Node Clone
  • 2670 Views
  • 12 replies
  • 7 kudos

Unable to connect to localhost:7687

Please keep the following things in mind: Unable to connect to localhost:7687, ensure the database is running and that there is a working network connection to it. I am using Neo4j Causal Cluster with Enterprise Edition did you search for what you wa...

Missing relationships in Bloom?

Any idea why there are missing relationships in Bloom? For example, the one from BAC to PROG: I've been calling in both the same query : "call apoc.meta.graph() yield nodes,relationships unwind nodes as node unwind relationships as rel return node,re...

2X_7_74dce7afdce469638adc17c9dfb058073d61a22a.png 2X_7_7ce5b678f0abc64dfdbc8b3b3754e809f4e25ef0.png 2X_d_da6c3874f6e36674570f9ff68d732f235dd5048b.png

Resolved! String slicing with APOC

Hi all, I'm struggling with APOC text functions to filter nodes by matching a string with a slice of a string in nodes' attributes. In python, I can easily do that by treating strings as arrays: test = "a test string" 'test' == test[2:6] True How ca...