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

Resolved! Excluding certain paths from allShortestPaths

I want to find the shortest paths between two nodes in a graph. I use the allShortestPaths algorithm in Neo4j Cypher. Not all possible paths should be considered when applying the algorithm, some certain paths should be excluded from the search. I do...

3X_a_1_a1aa88e7f806c454d62c4cbee31756f64216ca2b.png

Not able to import OWL file

neo4j desktop version 4.0.1 I tried to the following procedure: CALL semantics.importRDF("https://raw.githubusercontent.com/jbarrasa/neosemantics/3.5/docs/rdf/nsmntx.ttl","Turtle") I got the following error: Neo.ClientError.Procedure.ProcedureNotFou...

satish by Node
  • 3237 Views
  • 5 replies
  • 0 kudos

Resolved! Apoc Periodic Commit with multiple queries

Is there a way to execute multiple queries inside apoc.periodic.repeat? I have about 22 different queries I'd like to execute one after the other at a specific time during the day. Thank you!

hlow by Node Link
  • 608 Views
  • 3 replies
  • 2 kudos

Relationship with the initial code

We have developed a model for data processing in neo4j. These are the nodes :Experiment , :Variety , :Compound , :Parameter and the relationships between them. To specify from which variety is the value of the parameter we specified the paid property...

3X_2_6_2690027f815606a3c28d4e8fcf64b82a8c224fb5.png
iganea9 by Node Link
  • 1985 Views
  • 16 replies
  • 0 kudos

Advice on tools for graph visualisation

Hi, im currently undergoing a graduation school project to create a software to simulate retina cells involving the use of neo4j, react, and java backend which is preety much ready with all the API requests. As part of this project we have to present...

Resolved! Check existence graph projection

Hello, I would like to check if a graph projection exists and if yes, drop it. Here is the code tried without success: </>CALL gds.graph.list() YIELD graphName WITH graphName AS graph CALL gds.graph.drop(graph) YIELD graphName RETURN graphName</> Neo...

How to match a node with a dynamic name

I have the following fragment of a query: ... with "Oti" as wrd MATCH (n) WHERE any(word IN labels(n) WHERE word = wrd) return n but it is terribly slow because it must read all the nodes in the DB and check the label, and we have billions nodes. Is...

Optimization Newbie Questions

I'm working on developing a network graph that we're loading in neo4j. I'm still at a prototyping stage and trying to figure out a few queries. So one of the asks would be to get a list of all nodes connected to a particular device or later one, wha...

Resolved! Import cell from CSV based on latest date

Hi I have some data in a CSV file in the format below. Let's assume that the date format is Neo4j friendly. ID | User | Date 1 | 01 | 1/1/21 2 | 02 | 1/1/21 3 | 01 | 1/2/21 I'd like to create a node named User with the latest date. In ...

hlow by Node Link
  • 616 Views
  • 3 replies
  • 2 kudos

Resolved! Serching a list in a list

I'm using the Community edition v4.6 I have some nodes with multiple labels, say ["Asset", "M", "M10", "M20"] So, I can have a (:Asset:M:M10) or a (:Asset:M:M20) but also I can have (:Asset:M) nodes How can I query neo4j to return all nodes which are...