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.

Neo4j Graph Platform
cancel
Showing results for 
Search instead for 
Did you mean: 

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
  • 830 Views
  • 1 replies
  • 0 kudos

AuraDB - LOAD CSV from Authenticated Url

In the docs for loading CSV, it states you can load a CSV but ONLY from a publicly available URL. This is problematic for us as we are trying to load our company's CSV data into Aura and cannot have it publicly available. Are there plans to support a...

Need no-code JSON Data Load?

Help us shape the future of visual data mapping from JSON to graph by taking a few moments to review our survey. We're currently exploring extending the scope of Neo4j Data Importer (available both standalone and via Workspace) to support JSON in ad...

yolande by Community Team
  • 189 Views
  • 0 replies
  • 0 kudos

neo4j-import doesn't work with long line

Hi communityThis post is mostly intended for devellopersI was using the neo4j-admin import tool and came across this errorWeird input data, no newline character in the whole buffer 4194304, not supported a.t.mAs I understood it, neo4j-import cannot s...

How to reduce required storage key-names

I have a network with 6.5 Million Datapoints which I want to import from a CSV. All Datapoints will have the exact same structure, like you would expect from an SQL-DB with 6.5 Million rows.I have limited storage and I am not a fan of redundancy.From...

Resolved! create relationships from csv with distinct node

Hello,  I have a CSV file as below:     node01,relationship,node02 A_01,B_dependency,B_01 A_02,B_dependency,B_02 A_03,A_dependency,A_01 A_03,A_dependency,A_02 A_04,B_dependency,B_04     I hope the graphe like below: 001               My cypher code :...

001.png 002.png

How to import Cypher script into Neo4j AuraDB

Hello,  I am just starting to use neo4j AuraDB, and I didn't find where I can import Cypher script. I tried the apoc.cypher.runFile suggested in this link, but unfortunately I got the error saying that "There is no procedure 'apoc.cypher.runFile' not...

yuxin by Node
  • 488 Views
  • 1 replies
  • 0 kudos

Using distributed computing to write to Neo4j

I have 3.2+ million nodes I want to write to neo4j and almost twice as many relationships. I am using Cypher sessions and batches to create these nodes and relationships but it is taking *a lot* of time. What I think would be a good solution is to di...

neo4j-admin import relative folders on windows

Hello,Question: for admin import, how can i use a different import folder than the default import folder, on versions later than 4.2.x? Preferrably relative folders rather than absolute foldersBackground:For my project, i have been using a pipeline t...

Resolved! Unique Nodes loaded from CSV file

I have the following simple Cypher script:LOAD CSV WITH HEADERS FROM "file:///test.csv" AS row FIELDTERMINATOR ';'merge (n:Subject {code: row.NodeA})merge (m:Object {code: row.NodeB})merge (r:Relation {code: row.Relation})MERGE (n)-[:TO]->(r)merge (r...

Automate and record Neo4j loading time

Dear all,I am working on testing the DB loading time for different graph schemas and each need to run 30 times. I want to automate the database drop and creation and load from neo4j-admin process, but I'm not sure how to get the neo4j-admin running r...

Resolved! Stored procedure

I have a simple doubt. Can't we write stored procedure in cypher itself and use it like other SQL databases? Is using Java the only option we have?? 

suvi by Node Link
  • 666 Views
  • 2 replies
  • 1 kudos