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

Resolved! Aggregation on non existant label

I have two labels Searchable and Unsearchable on one of my node... Right now I have only Searchable nodes... So wanted to get counts of Unsearchable and assume that I will get 0. So my query was optional match (c:Country) return count(c) as coun...

Large scale export with apocs

Hi Michael, is it possible to use apoc.export.csv.query inside apoc.periodic.iterate ? I'm trying to run a jaccard query within apoc.export.csv.query and wanting to export files out in batches with apoc.periodic.iterate. I've been trying but getting ...

Load data from CSV

Hi I am trying to load the CSV using the following query. load csv with headers from "file:///test.csv" as line merge(a:Client{Name:line.TradingMember}) merge (b:Company{Name:line.WorksFor, ISIN:line.ISIN,Security:line.Security}) merge (a)-[:Employe...

2X_a_a72ad8c85e6a208ef74a7f8ed39bf38a9d1e6e14.png 2X_8_84979c7fc5eea5eddcb49dd9e2ec6fa6f7dc54b6.png

Using the ACTUAL data type with neo4j-import

When importing data using neo4j-import, make sure to review the required CSV file structure and considerations before moving on. http://neo4j.com/docs/stable/import-tool.html[] ACTUAL vs. String (default) or Integer: Each node in the CSV must have an...

Finding smallest subgraph containing given nodes

Hi! I have the following problem: I have a graph (duh ) and given a set of nodes say, N1, N2, N3,.. I want to find the subgraph containing N1, N2,.. and all the elements that are between them.. so if A is an element of the subgraph there should be a...

kaptenh by Node Clone
  • 425 Views
  • 0 replies
  • 0 kudos

Import graph from neo4j to python

hello guys, I want to make Neo4j the back end to one of my GUIs and I have no idea how to create a new graph or to import an existing graph. I have tried the package "neo4jupyter" in "https://github.com/merqurio/neo4jupyter", but always get this issu...

Environment Variable "NEO4J_HOME"

Hi Team, While installing the Neo4j, i have selected the default path, and now facing issue while using the LOAD CSV FROM 'file:///sample.csv'..... as i am getting error Neo.ClientError.Statement.ExternalResourceFailed Couldn't load the external reso...

2X_f_f16ae62adb27af089065a2f85e34fd989c0564f8.png

CLI in Neo4j desktop 1.2.4

Hi Michael, i am hoping you can help me with a neo4j problem. I think i have traced it to a root cause but your help on net steps would be really appreciated. I started using Neo4j on my work computer on windows v3.5. Due to firewall and security loc...

Department Hiërarchy

We modeled a department hiërarchy where each department can have zero or more sub departments. The model is as follows: (:Department)-[:SUBDEPARTMENT]->(:Department) A user can be connected to a department with a specific role. This means that the us...