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.

chrszrkl
Node Clone
since ‎10-28-2020
‎02-03-2023

User Statistics

  • 20 Posts
  • 0 Solutions
  • 2 Kudos given
  • 2 Kudos received

User Activity

I need to limit the search results returned by a full-text search based on an offset and limit. That means, the first query would return the first 10 results (offset=0, limit=10) and a second query would return the next 10 results (offset=10, limit=1...
I have a composite full-text search index consisting of multiple labels. Now I want to search for a keywords and limit the results on a certain label. I know how to apply filtering with Cypher: CALL db.index.fulltext.queryNodes('index', 'keyword*') ...
I'm currently writing unit tests that handle the case of deletion of non-existing nodes and relationships by their ID. Both queries should return the deleted nodes and relationships as array. Delete nodes by ID: MATCH (n) WHERE id(n) IN $ids OP...
I have long running queries which create/change a lot of nodes and relationships and take they usually take a few minutes to complete. I run these queries from a serverless function on AWS Lambda, so I'm charged on the execution time and also limited...
I'm automatically adding system properties to nodes and edges which are only relevant to the system but shouldn't be returned to the user during a Cyper match query. These properties start with '$', so it would be possible to filter them by property ...
Kudos from
Kudos given to