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

Maintaining graph structure in returned data

HI all. I am trying to retrieve data from neo4j in a very particular way. It will help to explain the goal. The goal is to visualize a web of user discussion. When a user first loads up a discussion on the frontend, I want to retrieve all the posts t...

Allow null when create relations

I need to create company and parent company relations from a json file, however some companies do not have parent companies, like this example { "company_id" : 2032, "parent_company_id" : 343 } { "company_id" : 2332, "parent_company_id" : } It is p...

jzhou002 by Node Link
  • 514 Views
  • 2 replies
  • 0 kudos

Resolved! Where is neo4j.log in the official Neo4j Docker?

HI there, I am running Neo4j Enterprise 3.5.19 in the official docker container (docker-neo4j-publish/Dockerfile at 2e3dda4f3b545c33fee51bc5fce089923a3cc1e7 · neo4j/docker-neo4j-publish · GitHub) and noticed that /logs/ only has debug.log and query.l...

Help with data model

Hey there, I'm pretty new to neo4j an would like to create a data model fir Active Directory permissions. My idea is something like this: MERGE (SecurityPrincipal{objectid:'S-1-2-3-99'})-[:HasRight]->(:Right {name:'WriteProperty'})-[:OnProperty]->(Ob...

s_b-t by Node
  • 283 Views
  • 0 replies
  • 0 kudos

Resolved! Match imported CSV column values with existing nodes?

I need some help in importing a CSV file and matching the contents of one column to existing nodes in my graph database. The CSV currently looks like this: ContentName, URL, Creator, Tags, Comments All of these columns contain strings. However, the "...

apeng21 by Node Link
  • 1665 Views
  • 12 replies
  • 0 kudos

Variable length with intermediate node

Hi I have a dataset that contains information about projects and project dependencies in package managers. Meaning that a specific version of a project has dependencies to other projects. The data model consists of project, which has a relation to ve...