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
  • 947 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
  • 1184 Views
  • 1 replies
  • 1 kudos

CREATE (node)

If I run this statement, it creates a node, but without the name node. It just gives it an ID number. What is the point of putting a name in the command if it doesn't even use the name?

Resolved! java.lang.NullPointerException

Latest Neo4j (4.2.6) and latest APOC (4.2.0.4) on an empty database: call apoc.import.xml("file:‎⁨/Users/Thomas/Library/Application Support/⁨com.Neo4j.Relate⁩/Data⁩/⁨dbmss⁩/dbms-b0482810-7255-47a0-b994-9228e7bcaa28⁩/import⁩/FODS_Person.xml") Inevitab...

thomasf by Node Clone
  • 1584 Views
  • 6 replies
  • 0 kudos

Order By Location

I have different types of nodes in my database called events and posts and each of them has a location property that will contain a spatial point of latitude and longitude. I would like to implement a query that will get me all events and posts and g...

Export.cypher.all batchSize effect

I'm attempting to export my DB as cypher and on an earlier version of neo4j (3.3.9) when I set streamStatements=true, batchSize=100 splits the response into multiple rows. When I run the same on 3.4 or 3.5 I get only 3 rows regardless of what I set t...

Resolved! How to understand this query?

This is from the tutorial: :play https://guides.neo4j.com/got/01_eda.html. The "Game Of Thrones” dataset. MATCH (c:Character)-->() WITH c, count(*) AS num RETURN min(num) AS min, max(num) AS max, avg(num) AS avg_characters, stdev(num) AS stdev Resul...

lingvisa by Graph Fellow
  • 435 Views
  • 2 replies
  • 2 kudos

Neo4j Db unavailable

Hi Folks - So I had a neo4j db which i was using to create small nodes and relationships and then I tried to run a APOC load procedure(which handles 400000 records) to create nodes from it. However, it ran into out of heapspace issue and then later s...

3X_0_e_0eb8adf04a19989b338d3fdb64fdd67985e9dd1c.png

Help with loading a CSV file

Hi All, I'm still new to Neo4j but have been tasked with loading and playing with some csv files to gain and understanding of the relationships that exist in the dataset. I have already tried importing my CSV files in a few different ways but keep ru...

Dynamic property value based on query

Is there any way to add a dynamic node property that is calculated at query time? e.g. for nodes Alice and Bob, if there is a relationship of type "LOVES" between Alice and Bob then a dynamic property "description" could return value "Alice loves Bob...

michela by Node Clone
  • 666 Views
  • 1 replies
  • 0 kudos

Protip: Dynamic Node Labels in Cypher using APOC

Cypher treats node labels as symbols. They are not data. They're closer to property names, almost like a valueless property. Symbols must be static terms in a Cypher statement. There are no operations you can perform to create or modify label terms. ...

abk by Neo4j
  • 723 Views
  • 0 replies
  • 0 kudos

Resolved! Constraining a relationship type or node labels?

I have attempted to search for whether the following is supported in any version of Neo4j: Constraining the type of b in (a)-[b]-(c), i.e. creating a new relationship with a disallowed type would fail the transaction. This basically would enable mod...

Create virtual nodes based on a property

Hi there, I try to detect and categorize communities from an existing graph. In order to do that, I created a monopartite projected graph with virtual relationships from a Cypher query. Then, I run the Louvain algo on it (write mode) and it works fin...