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
  • 988 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
  • 1205 Views
  • 1 replies
  • 1 kudos

Resolved! Failed to load auth plugin Neo4j version 4.2

Hi All, We've created our own auth plugin in Java to authenticate against Oauth2 of Azure. This is working fine with Neo4j 3.5.18. We're planning to migrate to Neo4j v4.2 and running into an issue when trying to use our plugin. A simple local test wi...

Can't Connect to Cypher Shell locally

I am quite new to using Neo4j. I was trying to invoke the cyphershell for the sample project provided in Neo4j locally using Neo4j desktop terminal, but seem to be getting this error. I'm not really sure what I'm doing wrong.

3X_d_d_dd10670ac312d2d414a0c1ca3c735a8aca3f617e.png

Resolved! Path that return a unique node and no relationship

Hello, I have this cypher query: MATCH p=(no {name:'nodeName'})<-[:enfant*0..]-(parent:application) unwind nodes(p) as n unwind relationships(p) as r with collect( distinct {id: id(n), name: n.name, labels: labels(n)}) as nl, collect( distinct {sour...

madiskou by Graph Buddy
  • 1151 Views
  • 4 replies
  • 0 kudos

Graph embedding using GDS library

How do the embeddings of GDS handle categorical attributes and different relation or node types? From the examples of 6.7. Node embeddings - Chapter 6. Algorithms it looks like the projection should contain equal types of nodes and relations only and...

Cypher Query In Bloom and passing parameter

Hi, Trying to craft a simple query where the depth of the relationship is subject to user input. My search phrase is Find $numlevels levels away from $cpcstart where $numlevels is defined as an integer and $cpcstart is node name property key Match p=...

Stuck in a query

Hi everyone, I'm pretty new to neo4j and I got stuck on a query that I could not figure out the best way to do it. Here is my graph model, where an author has multiple co-authors and writes multiple publications My need is the following: find the n...

3X_5_a_5aa78864de83ea2cd0a2dde04ccb5fdf75cf9d7c.png 3X_b_d_bd7de77aef5c00af3d380ffa7013284b7a893323.png

Custom traversal via node.js API

Hi, I am building a tree-like graph of network based on CIDRs, like this (simplified) example: Red nodes represent CIDRs, for example 10.0.0.0/27, 10.0.0.0/28, etc. Brown nodes represent that /32 IPs, for example 10.0.0.0/32, 10.0.0.1/32, etc. Due t...

3X_5_4_54e811b5586f0090a547d75505a827bb3c1281e8.jpeg

XML Namespaces processing

Hi, i'm trying to import xml with predefined namespaces <xelement:some_element></xelement:some_element> is there a way to keep full tag in apoc.import.xml like "xelement:some_element" instead of imported "some_element" tag?