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
  • 1006 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
  • 1217 Views
  • 1 replies
  • 1 kudos

Integrate Cypher with PlantUML for Documentation

My team documents our work. PlantUML is a language for generating diagrams -- especially classical sequence, class, and UML diagrams -- from plain-text input. PlantUML is an ascii-art language, like Cypher. We use PlantUML to generate and maintain di...

tms by Graph Buddy
  • 402 Views
  • 0 replies
  • 0 kudos

Get COUNT before LIMIT

Do we really need to perform 2 queries when doing pagination: to get the total countto get the actual result with ORDER BY and SKIP / LIMIT For example: MATCH (u:User) WHERE ... RETURN u ORDER BY u.username SKIP 100 LIMIT 25 already has to get all th...

2X_5_56b0b39bbe55eef658c217fa6471c164f8557544.jpeg
chris3 by Graph Buddy
  • 4240 Views
  • 9 replies
  • 7 kudos

Most direct way to import a BigQuery RDBMS into a GraphDB

I have a set of tables in a dataset in BigQuery. I have harmonized all of the column names so that related variables should be obvious. The tables have schema with data types and descriptions. Is there a straightforward way to ingest this into Neo4j ...

Neo4j docker container can't reach the database

Hi All, I'm not an expert with Neo4j or any other graph DB, I'm a cloud architect working on a POC project on AWS and facing some issues. We are facing an issue in the neo4j application, the neo4j docker container was working well without any problem...

Resolved! Import from POSTGRESQL fails with unhelpful error message

I was able to create a connection to my existing POSTGRESQL database and map the desired tables, but the IMPORT DATA step fails, and the log only shows: COMMAND: java -cp "XXXX/Library/Application Support/Neo4j Desktop/Application/graphApps/_global/n...

kevin3 by Node Link
  • 1915 Views
  • 5 replies
  • 1 kudos

NEO4J-ETL Import error with null pointer exception

Hi everyone, I'm trying to import data from a MySQL local database version 8.0.21 to Neo4j using the neo4j etl tool version 1.5.1 on the neo4j desktop version 4.2.5. I get this error when I try to import data using direct import or batch mode. When ...

3X_5_c_5c85073681ab4d88edb998e131fd95af58557b79.png

Regarding course import data into neo4j graph data

Hi, In the course "importing data with neo4j" , there is a section to create movies database. In that section i cannot find the cypher command to load the person nodes though i see the cypher to create Movie node(label). I am unable to import the rel...

Setting max number of connections to a node

Hi! I'm new here and in Neo4j development. I would like to integrate neo4j with a Java server application but the thing is, considering a node (:User) I would like to define a max number of connections to it. For example, a node User can connect with...

Resolved! Query against Node ID vs Indexed Unique Key

I'm busy developing an API that needs standard Authentication/Authorization. My users would be identified by their email (as a unique key on the User node). Which approach would be better? Index the user emails and query the user via their email on e...

Resolved! How to get the order of a query result

I have a simple question I wasn't able to answer: Imagine I have a query. MATCH (x:X) WITH x ORDER BY x.prop return counter(x), X where the counter is a number from 0/1 up to the number of the results. In other words, I want to added a colum...