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
  • 1290 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
  • 489 Views
  • 0 replies
  • 0 kudos

Few questions regarding the usage control

We are working on the monitor solution to display the server health, memory usage, cpu usage, disk storage usage and top SQL in Cypher. Can Neo4j represent those data? If Neo4j is not able to provide those information, is there any 3rd party solution...

Neo4j docker importing existing databases

Hi there, I'm trying to load an existing graph.db folder into a neo4j 3.5.6 docker image but it fails because of permission errors. When I run the docker image without any data it works perfect and generates an empty database. However when I put the ...

Overview of the Neo4j Graph Data Platform

GraphStuff.FM Episode #3![](upload://kXcT19poK0K7oFQrqnDN3hLLsY1.jpeg)The Neo4j Graph Data PlatformIn this episode of the GraphStuff.FM podcast, Lju Lazarevic and Will Lyon break down how the different pieces of the Neo4j Graph Data Platform fit toge...

greta by Graph Fellow
  • 512 Views
  • 0 replies
  • 0 kudos

Resolved! Multiple Possible Nodes from One CSV Column

I've a CSV file of businesses and business owners that looks something like this: S/nBusinessBusiness_IDOwned_ByGender1Aries Pte Ltd12345James BondMale2Taurus Pte Ltd23456DaenerysFemale3Gemini Pte Ltd34567Taurus Pte LtdNA I would like to create a gr...

Resolved! Deleting nodes and relationships in Bloom

I would like to delete a node or relationship in Bloom. It is easy to create nodes and relationships (with existing labels), but I can not find a way to delete them. There is a "back" (and "forward") to undo (and re-do) the last operation. This allow...

Cypher, Neo4j, & GRANDstack developer

Hello, My name is Michael McKenzie. I live in Washington DC and am actively pursuing new opportunities utilizing Neo4j. I have been working with Neo4j and cypher for two and a half years working primarily on personal passion projects. I have recently...

Neo4j Internship project with an AI startup

Company introduction We are an early stage, venture backed AI startup, formed with the mission of bringing AI technology directly to users with beautiful, human-centered design, and to build products that enable our users to accomplish more while mai...

Resolved! Relationship Properties

Is it possible for properties of a relationship to have their own properties? I am using people as a relationship between my nodes, and each person has their own properties (name, height, etc.). Between each node, there are many people/edges. I was w...

Neo4j Opportunity

Location: - We are based in Leeds, West Yorkshire but would be open to remote working Description: We are looking for two Senior Graph Software Engineers to join our engineering team to solve exciting problems in the domain of early warning threat d...

Resolved! Remove null s from result

I've created a query in neo4j : MATCH (x:Node)-[r*1..2]->(y:Node) WITH x AS x, SIZE(COLLECT(DISTINCT y)) AS y WITH CASE WHEN y=10 THEN x.target END AS l return l AS target But returns something like : target ____ null null "test1" null null "tes56...