Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
24 views

We have some objects in our DB, which roughly look like this: MATCH (:State)--(sV:StateVal) WHERE sV.notOnDate IS NOT NULL RETURN sV LIMIT 2; +----------------------------------------------------------...
BairDev's user avatar
  • 3,283
1 vote
1 answer
47 views

I want to run this specific request in Cypher using the APOC plugin. It should transfer data from OracleXE to Neo4j. The problem is that in my OracleXE database, there is a property in timestamp ...
user24538254's user avatar
0 votes
1 answer
55 views

I am trying to import a JSON Lines file into Neo4j using its APOC plugin. In this file, each object has a coordinates property, itself an object containing the latitude, longitude and height ...
Mat's user avatar
  • 1,046
0 votes
2 answers
132 views

I have a use case where I want to filter the paths retrieved from apoc.path.expandConfig based on a relationship property. Below is my current query: WITH source, candidates, exits, typesFilter // Use ...
Rohit Sharma's user avatar
0 votes
0 answers
47 views

I'm using neo4j library in python I want to check if a point is within a polygon (which will in our case will be state border) I have check all the neo4j documentation but couldn't find any resource ...
aMighty's user avatar
  • 283
2 votes
1 answer
59 views

Here's my Cypher statement: match (first1:ent) where first1.nodeid in ['aab40c4d65d5c0a428ed84dc0109b0c4'] match (first2:ent) where first2.nodeid in ['000415fee2b0272cdcc2439f521b2e2e'] CALL apoc....
ning wu's user avatar
  • 33
0 votes
1 answer
59 views

I've installed a trigger in my Neo4j database (version 4.4.36) to automatically add the creation date to every newly created node. However, when I submit a form from my Next.js app, the app freezes, ...
Djebarra Rabah Abderrazak's user avatar
1 vote
1 answer
44 views

I have the following query that is working as expected in neo4j. The query matches and collects distinct FEATURE, THREAT, GAP, FACT, and SCENARIO nodes with their relationships based on a specific ...
JAMSHAID's user avatar
  • 1,375
0 votes
2 answers
99 views

I have a lot of relationships in my Neo4j Database for which I have to rename labels. As the number is quite high (close to 13 million), I am processing parallelly for faster execution. I believe my ...
Bhupesh Dewangan's user avatar
0 votes
2 answers
148 views

In Neo4j Browser, there is a visual option to expand a node in a graph so its other relationships that are not yet visible become visible (for example if you double click on the node). My problem is, ...
skipi's user avatar
  • 1
0 votes
1 answer
57 views

We've been investigating how to create or update multiple nodes and relationships in our Neo4j database at the same time. We have designed a format which clearly separates the unique Node ID, ...
i_like_robots's user avatar
0 votes
1 answer
66 views

I choose to soft delete relationships on my graph, but I expect my nodes to have a single "active" relationship of a particular type. I ran into a scenario where some of my nodes ended up ...
Sam Wynne's user avatar
2 votes
1 answer
219 views

Vector encoding provider AzureOpenAI is not supported in genai.vector.encode. Error message below encountered: ClientError: {code: Neo.ClientError.Procedure.ProcedureCallFailed} {message: Failed to ...
gorilla's user avatar
  • 21
0 votes
1 answer
48 views

I try to run a query in a fast api request, using apoc.do.when to take in consideration 2 value of the name field related to the node type Resource_Type: @app.post("/filter/create", ...
Chrysos's user avatar
  • 17
0 votes
1 answer
64 views

In my database, I want certain nodes and relationships returned if items in 2 aggregated lists do not match. To be specific, a user has certain accesses and role. I want to pinpoint those users whose ...
Megatron's user avatar
0 votes
1 answer
237 views

On Neo4j Aura (GCP) I'm getting this error: Neo.TransientError.General.MemoryPoolOutOfMemoryError The allocation of an extra 2.0 MiB would use more than the limit 18.7 GiB. Currently using 18.7 GiB. ...
pmo511's user avatar
  • 619
0 votes
1 answer
92 views

MATCH (a:PARENT), (b:CHILD) WHERE a.id = b.id MERGE (b)-[:PART_OF]->(a) I am running the above Neo4J query but I run into a memory exception, "the transaction size reached" I updated the ...
AAB's user avatar
  • 1,654
2 votes
1 answer
157 views

Is there a way to expand a path until I find a node with degree n? I have a starting point and want to follow the path until I find a node that has a degree of more than 2 (so it forks the path). ...
MiepMiep's user avatar
  • 159
1 vote
1 answer
188 views

I have a query like I wrote below. I couldn't solve the error I gave below even after a lot of effort. I encounter this error when I do any sorting operation. But not always, in specific cases. I ...
Alp Buğra Aker's user avatar
0 votes
1 answer
50 views

Using neo4j (with APOC 5.7), I'm trying to find the shortest path on a topological graph (no location on the nodes), where the weight of each step is 1 by default. I don't want to limit the number of ...
nimrod serok's user avatar
  • 16.1k
0 votes
1 answer
289 views

I am doing a project in which I am required to return the path or nodes in a path from a particular start node. I pass the start node to the query, and need to continue down the path until the value ...
Sharon 's user avatar
0 votes
0 answers
63 views

I have a question about how to deal with Neo4j queries that are slow and then crash. First of all, let me explain the graphs. There are 20million nodes called "Party". Each Party node has ...
newbie's user avatar
  • 49
0 votes
1 answer
123 views

I created a map of city in Neo4j using OpenStreetMap and OpenAddresses data. I want to find the shortest path from one address to another. The problem is that, when I'm using function apoc.algo....
strzelaczbramek9's user avatar
0 votes
1 answer
285 views

I can create a relationship in my graph, assign weights and write in disk as follows: MATCH (a1:node1)-[rel1]-(p:other_node)-[rel2]-(a2:node2) // create the weight with a1.id as id1, a2.id as id2, ...
albertovpd's user avatar
0 votes
1 answer
115 views

i'm trying to migrate the schema from neo4j to tigergraph where i exported the data from neo4j in graphml format and trying to parse the file and create schema in tigergraph. Do let me know if there ...
Aysha's user avatar
  • 11

1
2 3 4 5
15