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
  • 1687 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

How to show only most recent relationship

How do you run a MATCH and RETURN query to show the only the most recent relationship between nodes by date? Relationship properties include username, date, and there can be dozens of relationships between nodes and nodes have chained relationships ...

bill1 by Node Link
  • 1120 Views
  • 1 replies
  • 0 kudos

Error in ETL Import from MySQL

Error creating node with label CrmPerson: unable to convert value "986" for property Errors type java.lang.NumberFormatException: For input string: ""150"" This is an auto-generated number on the Neo4j as best I can tell. But I don't see how to chang...

fjblau by Node
  • 643 Views
  • 0 replies
  • 0 kudos

Neovis network visualization

Hi, how I can visualize a network graph with neovis.js. The visualization should be touchable. If I toch one node the connected nodes should be visible. Is there any example? Thanks for help!

Create a graph of vCenter infrastructure

Import vCenter infrastructure into a knowledge graph using Neo4j github source: https://github.com/pdrangeid/veeam-maint pre-requisite for this project is implementing the tools from Graph-commit project: Powershell "interpreter" for Cypher This is a...

pdrangeid by Graph Voyager
  • 798 Views
  • 1 replies
  • 2 kudos

"identical" queries, different results

I have a graph that I query in three different ways: match (n:node{cat:'ssub'})-[:rel*]->(:word{pt:'ww'})-[:next]->(w2:word{pt:'ww'})-[:next]->(:word{pt:'ww'})<-[:rel*]-(n), (n)-[:rel*]->(w2) return distinct n.sentid as sentid, n.id as id order...

pebbe by Node Link
  • 901 Views
  • 3 replies
  • 0 kudos

Resolved! Cypher Syntax: Filtering Nodes in WHERE clause

I am trying to simplify a working query, but am getting unexpected results. In my example graph, I have Users and Articles. The only relationship is (u:User) -[:HAS_READ]->(a:Article) . Users and Articles have Names. I am trying to build a "weak tie"...