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
  • 855 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
  • 1118 Views
  • 1 replies
  • 1 kudos

Create graph is very slow

I use the cypher like: CALL gds.graph.create.cypher( 'mygraph', 'MATCH (n) RETURN id(n) AS id', 'MATCH (n)-[r]->(m) RETURN id(n) AS s, r.cost as cost, id(m) AS t' ); to generate a new graph with name of mygraph, but it run an unexpected ...

The composite index not work

Hello, I faced a problem that composite index does not work (Neo4j community 3.5.9). First, I created some indexes named :Entity(entity_id), :Entity(entity_id,job_id),:Entity(job_id). Then, I profiled a query : profile MATCH (n:Entity) WHERE n.entity...

3X_3_d_3df7f5df5efdf0f0e6bb57101f01d2d2b70c2db2.png
Fano by Node Link
  • 182 Views
  • 0 replies
  • 0 kudos

MERGE and relationships

The following query: MERGE (resources:Entity {id: '#resources'}) MERGE (dc1:Component {id: 'DocumentChildOf'}) ON MATCH SET dc1.value = '{v1}' ON CREATE SET dc1.value = '{v1}' MERGE (dc1)-[:ATTACHED_TO]->(resources) MERGE (artwork:Entity {id:...

3X_2_2_22502412d143b7e86a25ce989b5a669003b0f9c4.png 3X_3_a_3a3ca1c3681921af87277a645399cd20769eb914.png

Avoiding duplicate nodes when existence is unknown

I'm using Neo4j Desktop to develop the cypher queries I will need for my use case. Suppose that my graph may or may not be seeded with data based on the following query. CREATE (parent:Entity {id: 'Dan'}) CREATE (child:Component {id: 'Bob', value: 'a...

Node type inheritance like TigerGraph?

Hello NeoPpl, a basic/dumb question, sorry for noobing up your forum. I have seen in TigerGraph a kind of inheritance as follows: CREATE VERTEX person (first_name STRING NOT NULL, last_name STRING NOT NULL, age INT, gender STRING, state STRING, ​PRIM...

Resolved! Get a variable outside FOREACH

With reference to the above image, I want the variable "o" outside of the FOREACH loop. Hence I tried to go with apoc.do.when(below image) The problem here is the now line is not recoganized as a variable in the last FOREACH loop, tried using WITH ...

3X_a_d_ad9a4c2016702139d79355cad36e089fbac87195.png 3X_0_d_0d738b86d5329f187f2120d5c2f0aa9b6bff1426.png

How to make a group by in cypher query language?

I have these relations: NodeType1 A {ts:11} =r1=> NodeType2 m NodeType1 B {ts: 22} =r1=> NodeType2 m NodeType1 Y {ts: 22} =r1=> NodeType2 n NodeType1 Z {ts: 32} =r1=> NodeType2 n NodeType1 X {ts: 23} =r1=> NodeType2 o ....... For each NodeType2, I wi...

What is a relationship groups in Neo4j?

Hi there I was reading about the storage limits avaialbe in 3 formats in the Neo4j operation manuel. As you can read in the limits table, there are the following limits in Neo4j by default: |Property keys|2^24 (16 777 216)| |Nodes|2^35 (34 359 738 36...

Best practices for importing multiple xml files

Newbie here. I need to import multiple xml files into Neo4j. Each file represents an entity, let's call it a Thing. The outer element is Things, so each file looks approximately like <Things> <Thing ....> ... </Thing> </Things> I can import ...