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
  • 987 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
  • 1205 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
  • 391 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
  • 4177 Views
  • 9 replies
  • 7 kudos

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
  • 1866 Views
  • 5 replies
  • 1 kudos

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...