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.

dbeaumon
Node Link
since ‎08-26-2018
‎06-01-2022

User Statistics

  • 8 Posts
  • 0 Solutions
  • 0 Kudos given
  • 3 Kudos received

User Activity

I'm pretty sure that I've done this before, but my internet brain is not being useful today. I need to do something like this: WITH ("a","b","c") AS master_list MATCH (thing:Thing {ID: "test"})-[:HAS]->(anotherthing:Thing) WITH master_list, thing, co...
I have a relatively complex schema in my database, and it is nice to be able to create a "cut down" visualization of parts of the schema rather than the whole thing. I can treat db.schema() in much the same way as any procedure call if I want to fil...
I'm trying to use APOC to load a CSV load from S3. I cannot make this happen. My setup: neo 3.6.3 (docker) - tried both enterprise and community apoc 3.5.0.4 The plugins directory (per the documentation) contains: apoc-3.5.0.4-all.jar aws-java-sdk-c...
Is it possible to apply an index to a list of (string) values, so that you can efficiently look up "all nodes with a list property that contains X". I have tried creating the index, and adding a list of strings, but any cypher search I do either retu...
I suspect that I'm just asking a basic question in a new and less intelligent way, but is there a way of getting just the top/bottom node by value without going through an ORDER BY, collect()[..1], UNWIND? It just feels very long-winded, and somethi...