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
  • 621 Views
  • 0 replies
  • 0 kudos

orderBy with makeAugmentedSchema

We have recently moved from using augmentSchema to makeAugmentedSchema to provide us with our graphQL schema via the neo4j-graphql-js library. During this move we lost our orderBy fields. We now only have _id_asc and _id_desc as recognized criteria ...

Resolved! Jackson infinite recursion error after clone operation

Neo4j Enterprise 3.4.5, using a custom procedure to clone a subgraph. MATCH (ir_i:Insight { uuid: "2bba4e25-2bd1-11e9-8948-2ab0e8a6a76e" }) CALL uvs.cloneTree(ir_i, ["Point"], []) YIELD out WITH out AS ir_i OPTIONAL MATCH (ir_i)-[ir_T:TITLED]->(ir_md...

Jiropole by Graph Voyager
  • 4370 Views
  • 10 replies
  • 0 kudos

Seabolt, golang official drivers and openssl1.0.0

Any plan for Seabolt to support an OpenSSL version that wasnt declared EOL in 2015? It is a dependency for the "official" golang driver and since the old community driver is abandoned gophers dont have a great option.

wolf by Node
  • 2056 Views
  • 6 replies
  • 0 kudos

Profiling?

Hi, I am working on a custom java module to import data. It worked fine, but then i made some "improvements" and it runs too slow. Is there any good way of finding out which java functions are the most time-consuming - i.e where the code spends most ...

kaptenh by Node Clone
  • 989 Views
  • 2 replies
  • 1 kudos

GraphQL filtering and the new date types

We provide a GraphiQL interface to our users to enable them to query our nested data. The interface is based on the neo4j-graphql-js library. The recent updates to the library have given us OrderBy and the ability to use the new date/time fields. Our...

Neo4j driver driving me crazy - Strange behaviour

I'm trying to load Enterprise Architecture-related data into Neo4j via a small Node.js (TypeScript) application reading an XLSX file and I'm experiencing very a very strange behaviour of - I suspect - the neo4j-driver (v. 1.7.2) for MERGE statements ...

How to use Neo4J native types with SDN and OGM

Hi, I wonder how to setup SDN with OGM to use native types instead of converting e.g. temporal fields to string properties. Currently I'm using Spring Boot version 2.1.0.RELEASE and org.springframework.data:spring-data-neo4j:5.1.2.RELEASE, which dec...

Aggregate with GroupBy SDN

Is there anyway with which we can fetch the aggregates(like count) grouped by some property of the node without writing custom-query in the code using SDN/OGM. Any help is appreciated. Thanks in advance.