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.

coolyrat
Node Clone
since ‎09-09-2019
‎06-01-2022

User Statistics

  • 13 Posts
  • 1 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I need help on this problem, is there a way to get all related users given a start user? I search and read through the docs and the best match is using (u)-[*1..3]-(t:User). But the result is not what I want, can someone help me? I started with a q...
Hi, I am given a Core User and need to match all the relationships start with Core User to other Users. Core User is also labeled with User. I have the following relationships: (cu:User)-[:FOLLOWING]->(:User), Core User is following some Users(cu:Use...
Is it possible to get total and paging data in one query? Say I have 100 total rows and my output looks like { "total": 100, "list": [1, 3, 5, 7, 10] } I tried to achieve this with a query like MATCH (:User {uid: $uid})-[:R1]->(:Chat)<-[:R2]-(:P...
Hi, I have three kinds of labeled nodes. User, Post, and Chat. I'm trying to merge some posts belong to a chat. Here's my raw data from REST. { "chatId": "some chat id", "posts": [ { "title": "some title", "author": { "id"...