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

Should I use HTTP API or Driver API?

Driver API: https://neo4j.com/docs/api/python-driver/4.1/ HTTP API: https://neo4j.com/docs/http-api/current/ Is there a particular recommendation for when to use which API? For example, one may be more efficient than the other? Per the documentati...

lingvisa by Graph Fellow
  • 2078 Views
  • 6 replies
  • 1 kudos

OGM SDN 6 query by relationship property

Is there a way to use findBy.. to retrieve a subset of a graph model based on a relationship property value? Example: Given nodes A, B. A is related to node B by R. R has a r.type property. The following model classes exist. A and B are @Node cla...

Graphql install Button greyed out

I've usually developed and played on my mac but I decided to run neo4j desktop on my windows pc. For the life of me I can't recollect if I had to downoad the plugin for graphql manually. Even when I re download it on the mac, the install button is t...

2X_9_98a9721bc883c26ea61898919c93dbad4bf09c64.png

Resolved! DeleteById is not deleting exisiting Relationships

I user spring-boot-starter-data-neo4j version 2.4.5 If I try to delete a Pojo like this: pojoRepository.deleteById(pojo.getCompletePath()); The pojo is deleted but the attributes still exist. Shouldnt the attributes get deleted together wi...

@neo4j/graphql vs neo4j-graphql-js

Hi, I've recently read this post of the maintainer of neo4j-graphql-js in github: The future of this library · Issue #608 · neo4j-graphql/neo4j-graphql-js · GitHub As he says, the library will no longer be maintained officially by Neo4j and he mentio...

Counts in the new @neo4j/graphql module

Hi everyone, I recently adopted the new @neo4j/graphql module and I am loving it so far. One crucial thing (same as the neo4j-graphql-js lib) is that support for counts is still missing. if I have a simple query where I fetch the first 10 movies out ...

jim_ruts by Node Link
  • 462 Views
  • 1 replies
  • 2 kudos

Scehma that returns from (to)<-[rel]-(from)

How do I write a server schema that will return two nodes and the relationship between them in my client? I have a tree hierarchy made up of only two types. # a node type Node { ID: ID! name: String } # the relationship between two Node type Br...