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
  • 856 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
  • 1118 Views
  • 1 replies
  • 1 kudos

Resolved! Debugging a long running query

Hi all, I have a problematically large cypher query that seems to run forever. Little background. I am running neo4j in a docker container as part of docker compose. The machine this is running on has 4 vCPUs and 32 GiB of memory.Neo4j currently uses...

Max-Tait by Node Link
  • 910 Views
  • 4 replies
  • 0 kudos

Resolved! Prevent relationship isomorphism in exists clause

I am building an application that should accept quite general input and be able to generate quite elaborate Cypher queries. I get stuck on the following:Suppose we have the following example database: CREATE (John {name:'John Doe', age:30})-[:HAS_AUT...

wgevaert by Node Link
  • 713 Views
  • 4 replies
  • 0 kudos

Train and Test Split

Hi All, I am very new to neo4j and currently working on a Link Prediction use case. I need to split my graph into positive and negative samples. Positive samples to be used as train set where my relationship exists and negative samples to be used as ...

MeghanaS by Node Link
  • 217 Views
  • 0 replies
  • 0 kudos

a node cannot be deleted

Today, I want to clean up invalid data and find that a node cannot be deleted and its relationship cannot be deletedExecuting the delete statement of this node does not return results, and it has been blocked for several hours without returning. Is t...

kasic by Node
  • 389 Views
  • 1 replies
  • 0 kudos

Resolved! link prediction predicting wrong links

Hi,       I am using the link prediction pipeline to predict links between two node labels using their correspondingrelationships.https://neo4j.com/docs/graph-data-science/current/machine-learning/linkprediction-pipelines/predict/ I have specified th...

dg_22 by Node Clone
  • 2014 Views
  • 8 replies
  • 2 kudos

Read-committed isolation level

If the following query is executed in a read-transaction and another write transaction commits during its execution, what does that imply? MATCH (n:Entity {asset_id: $%s, version: $%s, id: $%s})with nCALL apoc.path.subgraphAll(n, { relationshipFil...

Counting nodes based on date

I have a set of nodes with a creationDate property that is indexed, and I am trying to count how many nodes were created for every day in a given date range, including days for which none were created. To do this for the month of December, I tried: /...