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
  • 943 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
  • 1183 Views
  • 1 replies
  • 1 kudos

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 is the only option we have?? 

suvi by Node Link
  • 1741 Views
  • 10 replies
  • 3 kudos

Resolved! no relationship in database

Good morning experts, i can't see the relationship between my data, there is no error and it's mentioned no changes no records this is my code  CREATE CONSTRAINT ON (c:LIBELLEPDT) ASSERT c.id is UNIQUE;CREATE CONSTRAINT ON (c:AssetClass) ASSERT c.nam...

neo4jphoto1.png
Hajer by Node
  • 3912 Views
  • 20 replies
  • 2 kudos

Adding python function into apoc.periodic.iterate

Hi,I'm trying to add a calculated property to each of a bunch of nodes based on the 'SentText' property of that node (a BERT sentence embedding vector calculated in Python in this case).I've found an example of apoc.periodic.iterate below (https://to...

IoT DataModel for Sensor data - Time-series

Dear All, Wishing you all a Very Happy New Year! Quick one..Recently Ive completed a Data Model for Industrial IoT use case where in ive modeled the Asset Hierarchy as well sensor data . Time series data for every min from around 100 sensors from the...

Resolved! WHERE a Property contains any one of a list of strings

Hi Neo Friends!The query below is a modified version of a query I made that works when I am searching in the CONTAINS clause for only a single product type, but I've tried multiple ways of searching for more than one, such as making a list with comma...

gq16_0-1654901505752.png
gq16 by Node Clone
  • 822 Views
  • 2 replies
  • 2 kudos

Resolved! Slow Kafka-Neo4j sink

Hi everyone, I have the following situation. I am sinking data from Kafka to Neo4j using the Kafka connector Neo4j connector. I have 44 topics from which I should read from and some of the topics are intersecting with each other, which means that dur...

Modeling and querying package dependency trees

Dear Community, we are Connor and Daniel, Software Engineers at Anaconda, and we are currently looking at neo4j to represent our package meta data to answer questions like: What packages are available for python X on platform Y but not on platform Z?...

Untitled graph.png

Finding nodes without a specific relationship

I need a query that finds nodes without a specific relationship. The following query works:  MATCH (e:Entity) WHERE NOT (e)-[:CHILD_OF]->() RETURN e  But neo4j browser gives me the following warning:This feature is deprecated and will be removed in f...