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

Migration back to Discourse

Hello friends! So... about a half year ago we switched the platform used here on community.neo4j.com from Discourse to a vendor called Khoros. We were hopeful about Khoros as a platform that we could build upon to make a great website for the communi...

Anonymous by Not applicable
  • 1696 Views
  • 13 replies
  • 3 kudos

About the General Discussions board

  The General Discussions board is meant as a location to ask non-technical questions either about Neo4j, or about the Graph Community in general. Use the General Discussion board for some of the following: Looking for a job OR hiring for a position...

TrevorS by Community Team
  • 525 Views
  • 0 replies
  • 0 kudos

Resolved! Building a desktop app using Neo4j

Hello ! Very junior dev here, I'm coming from scripting for CG Animation softwares, so I'm not a proper programmer. I'm finishing to read about Neo4j, reading all the "Get Started" I can find, now I'm reaching the point where I need to start building...

munshine by Node Clone
  • 579 Views
  • 2 replies
  • 1 kudos

Resolved! Duplicate relationships

Hello, Just starting today to read about Neo4j, I'm already loving it. But this is the very begining of my journey, and I'm wondering very simple questions. I hope I didn't miss the obvious answer in the documentation. Is it possible to have several ...

2X_e_e121d27593e60c49b41a1fb66eae89511579e75a.png
munshine by Node Clone
  • 2163 Views
  • 2 replies
  • 1 kudos

Neo4j Use Cases

Just trying to understand appropriate use cases for Neo4j. Any general comments about the kinds of use cases that are / not good for Neo4j would be helpful. Is Neo4j intended to be used as an operational data store? Would it be common to sync a graph...

DB modeling help

Hello everybody, I'm begginer in graph db world and I basically understand whole concept, but I need a little help with concrete problem. I'm working on one EMS solution which will be used for controlling network devices. Spring data will be used on ...

nikola by Node
  • 902 Views
  • 4 replies
  • 1 kudos

APOC vs CYPHER

what is the different between operation in APOC or CYPHER in terms of performance ex: CALL apoc.search.node('{Person: "id",Person: "id"}','exact','5686743') YIELD node AS n2 MATCH (p:Person {id:"5686743"}) RETURN p

How to match multiple queries?

MATCH (p:Project{id:"p1test"})<-[r1:TICKET]-(:Ticket) MATCH (u:User{id:"user1test"}) WITH u, COUNT(r1) + 1 AS issNo, p CREATE (p)<-[rel:TICKET]-(t: Ticket {id:apoc.create.uuid(), title:"T1", hourEstimate:9, desc:"hELLO", done:false, issueNumber: issN...

q6qgs by Node Link
  • 6128 Views
  • 6 replies
  • 3 kudos

Return only one instance of a node

I'm not really sure how to ask this. I have a graph in which there are multiple paths between nodes. If I use the syntax below, neo4j will return a value for each node pair and each path between the node pairs. I only want it to return one value per ...