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

Resolved! Saving auth roles & scopes in Neo4j

I'm trying to figure out a good way to set up authentication and authorization on my GRANDstack setup. I do not want to tie my roles/scope logic to firebase. What if I want to query all staff members from the client? It looks like I'd have to query f...

2X_9_93a2754c20519730ab8f501b74bce033d1c847f4.png

Return interface?

Hello, I have the following graph: (Client)<-[:HAS_BOSS]-(Client)-[:MADE]->(Order) and I am using infer schema so I have the types resolved. interface Client { id: String! login: String! location: Point name: String! } And 2 implementat...

magaton by Node Link
  • 350 Views
  • 1 replies
  • 0 kudos

Resolved! Adding to a list with Spring Data Neo4j with Kotlin

Hello one and all, in a departure from my normal form, the code here seems to work; but I am just looking for some counsel to perhaps add a little more elegance. org.springframework.data:spring-data-neo4j:6.0.5 kotlin 1.4.30 I lead an active life and...

wayne by Node Clone
  • 830 Views
  • 2 replies
  • 0 kudos

Resolved! @Transient annotation seems broken

Hello, When using @Transient from org.neo4j.ogm.annotation.Transient to annotate a field I don't want to be persisted, that field gets persisted anyway. However, when I use the @Transient from org.springframework.data.annotation.Transient, the field ...

Nested filter query

Hello, I hit another problem. I have the following model in Graph. (periodA:Period)-[:IN]->(periodB:Period)-[:IN]->(periodC:Period) Period has property ‘value’ What would be the graphql query to retrieve periodA value for periodB.value = X and peri...

magaton by Node Link
  • 279 Views
  • 0 replies
  • 0 kudos

Graphql and neo4j depth problem (using GrandStack)

Hi, I'm trying to use Graphql with neo4j for my enterprise. For a short presentation, lets imagine this graph : {User1:User} -> {Entity1:Entity} -> {google.com:Asset:Domain} -> {dns.google.com:Asset:Subdomain} -> {8.8.8.8:Asset:Ipv4} -> {80:Asset:por...

Resolved! Spring Data, FloatValue to Float Uncoercible error

In the AdditionalTypes class from Spring Data, there's a converter for Float: On line 77/78 hlp.add(ConverterBuilder.reading(Value.class, Float.class, AdditionalTypes::asFloat).andWriting(AdditionalTypes::value)); hlp.add(ConverterBuilder.reading(V...

A Cypher DSL for Golang

Hi all. I develop a cypher dsl on my own. It is pretty convenient to use. Example can be found in test_cypher folder. Hope it can be helpful. Just give it a try. Here's git repository: github.com manhcuongbk56/cypher-go-d...

Spring data neo4j incorrect node relation issue

I want to model following scenario: User (node) can have multiple posts (node) and Users can follow each other Here's my spring boot model @Node("User") data class NeoUser( @Id val id: Long, val username: String, val fullName: String?...

3X_f_e_fef5bfba1e7f7dd7023325221d32c4e7bf11eb3e.jpeg