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

About the Drivers & Stacks category

All applications using Neo4j depend on drivers to execute statements to update or query data. Neo4j drivers are mostly built on the binary Bolt protocol. Official drivers exist for Java, JavaScript, .Net, Python, and Go and more. Other languages (R, ...

yolande by Community Team
  • 575 Views
  • 0 replies
  • 0 kudos

Spring Data Neo4j RX @RelationshipProperties List problem

So my current model of Person contains @Relationship(type = PROVIDES_SUPPORT, direction = INCOMING) private Map<Person, List<SupportRelationship>> supporters = new HashMap<>(); Those are the people that "support" the current Person (let's say Ange...

arusev by Node Link
  • 689 Views
  • 2 replies
  • 1 kudos

Problems using LOAD CSV within NEO4J -OGM

Hi, Using the standard java driver (org.neo4j.driver.v1.Session) i have had the LOAD CSV functionality working perfectly correctly for some time. e.g. StatementResult x = mySession.run("cypher query encapsulating LOAD CSV statement"); However i now n...

Resolved! How to use APOC in java

Hi guys, I'm currently learning neo4j and trying to use APOC library in my java project. Specifically, I'd like to build a application that can use APOC's functionality to do batch update to my graph. However, I don't know how to use APOC in Java. I...

yunzhoun by Node Link
  • 1653 Views
  • 4 replies
  • 0 kudos

Help with mutation for a relationship-as-a-type

I am just getting into working with GRANDStack and have found building out a schema to be really intuitive and enjoyable to work with. However, I am trying to follow the example from the docs for creating a relationship as a type, as I seed my Neo4j ...

GraphQL schema issue

Hi, I am working with parts of the GRANDStack starter project (but changing it a bit for my own project). An issue is that I only get an empty array out of the following query and data: GraphQL: query { Company { name person { firstName ...

TLS with bolt in neo4j-driver

Hello Neo4J community! I have a question regarding the use of TLS with the 'neo4j-driver' javascript library. I'm referencing this table in the documentation while trying to create my driver connection. const driver = neo4j.driver( "bolt+ssc://SE...

Pre-filtering for security

Hi, I'm trying to pre-filter database before query is made by SDN/RX. Is is possible to do so with something like cypher query for filtering out data and leaving sub-graph before real request comes in? It's not Role based system, each user is specifi...