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
  • 898 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
  • 1145 Views
  • 1 replies
  • 1 kudos

Returning Graph with Relationship Stats as Properties

Hi All, MATCH (a:Application)-[r]-(b) WHERE a.name='MyApplication' AND type(r) in ['EXPORTS_DATA','IMPORTS_DATA'] WITH startNode(r) as sNode, endNode(r) as eNode, type(r) AS relType, COUNT(r) AS relCount RETURN sNode, eNode, apoc.create.vRelationsh...

Ali by Node
  • 759 Views
  • 0 replies
  • 0 kudos

How to undo write operations?

Suppose neo4j has already many nodes/relations in it, call it v1.0, now I'm trying to write new programs to write new nodes/relations into it, say v2.0. Even under careful test, these programs will inject unexpected data errors, because I can only te...

melonux by Node
  • 3781 Views
  • 2 replies
  • 0 kudos

Query an existing Neo4j graph using SPARQL

Hello Community, we have an existing Neo4j graph ingested using MERGE statements. Now I want to query this graph via SPARQL queries. Basically I need a converter from SPARQL to Cypher. Could you provide some information for us please? Thank you!

Graphml Export/Import problems - prolog error

I am trying to move my database from one server running community edition, to another running enterprise. I export my files using <apoc.export.graphml.all('/var/lib/neo4j/import/complete-graph-april.graphml', {cypherFormat:"updateAll"})/> And import ...

Jaccard algorithm returns no records

I am using Neo4j Desktop 1.1.20, Neo4j 3.5.2, Graph algorithms 3.5.2.0. I am following along with the documentation for streaming jaccard similarities and keep getting no results. Cypher: </> WITH [ {item: 0, categories: [30633,30648,30630]}, {item: ...

How to include shortest path for like query

Hi, I want to find multiple shortest paths on one single screen or for example i want to show the path of all the nodes with the name return in them that is done using the like query. I tried to create it but i was unsuccessful and was getting erro...

sucheta by Graph Buddy
  • 855 Views
  • 0 replies
  • 0 kudos

Max Page Cache value not being respected

Hi, We are facing issues with constantly growing neo4j memory, which ultimately crashes the server. We are running neo4j 3.4 in production on EC2 machine r4.8xlarge with linux OS. ( 32cores, 244 GB ram) Our DB is 2T in size. We are using the followin...

2X_1_1dcbf96a797189bfe5c087e444c8267c3e7051b4.png
shweta by Node Link
  • 2157 Views
  • 4 replies
  • 0 kudos

Resolved! Configuring CPU and Memory usage on Kubernetes

When trying to diagnose performance issues with parallelized writes running on a kubernetes cluster, I found that running Runtime.getRuntime().availableProcessors() in a stored procedure returns 1, even though it's running on a node with 8 cores. Ru...