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
  • 980 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
  • 1201 Views
  • 1 replies
  • 1 kudos

Why inconsistency of OR testing of Labels?

To test whether a Relationship has one or another label has two possible solutions: MATCH(n)-[r:ACTED|DIRECTED]-(m) RETURN count(r) and MATCH(n)-[r]-(m) WHERE r:ACTED_IN OR r:DIRECTED RETURN count(r) But to test whether a Node has one or the other...

clem by Graph Steward
  • 548 Views
  • 1 replies
  • 1 kudos

Failed to start Neo4j

Hi, Facing an issue while starting Neo4j DB. 2021-02-11 14:58:49.755+0000 WARN [o.n.k.NeoStoreDataSource] Exception occurred while starting the datasource. Attempting to close things down. Component 'org.neo4j.kernel.impl.storageengine.impl.recordsto...

Pattern matching

Hello everyone, I am doing some tests with the fraud sandbox of Neo4j, and starting with the following query: MATCH (n1:Transfer) -[:NEXT*2..10]- (n2: Transfer) RETURN * LIMIT 20 I would like to figure out which of these chains of Transfer nodes are ...

3X_8_f_8f8f69619d1a36a53cc181b3a0630ce1a0f2cf5d.png
fedex by Node
  • 252 Views
  • 0 replies
  • 1 kudos

Predicting missing node properties

Hello everyone, I am looking for a way, to predict a numerical property of a node. My Neo4j contains a supply chain network, I am looking for a way to add missing properties to product nodes, especially a price. The price should be predicted from the...

Compressing attribute(s) of a node

On a labelled node, can i compressed a particular attribute of nodes. One alternate i did was, store that particular attribute outside neo4j and reference id store on the node attribute (since this attribute not being used in filter criteria in searc...

md7 by Node Link
  • 271 Views
  • 0 replies
  • 0 kudos

Neo4j and Snowflake Cloud Database

Trying to get Neo4j ETL to function with Snowflake. Is the source code available? or can the connection be evaluated? The system is unable to read the tables. It is able to identify the available schemas. 90.9% - 00:00:00.010 - 9.1% - 00:00:00.001...

lpfrnk by Node
  • 2750 Views
  • 3 replies
  • 0 kudos

Resolved! Help creating graph from json file

Hi, I am trying to create a graph from some json files, but I am stack in the beggining. I load the file with apoc, ok, but then...how I create nodes and relationships from them? For example, in the following json file, how could I extract the info f...

Apoc bug after erroneous null property?

call apoc.create.vNode(['test'],{label:'test',zero:null}) yield node return node shows node in Neo4j Browser, BUT on hover results in Something went wrong: *"TypeError: Cannot read property 'match' of null"* and the application can't recover. Reloa...