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

JSON Parse Exception Unexpected character

I am trying to connect neo4j with DesiteMd through javascrift. But in neo4j i am getting the following message ''WARN /db/data/cypher org.codehaus.jackson.JsonParseException: Unexpected character ('o' (code 111)): expected a valid value (number, Stri...

Repository delete method

Does the Spring repository delete method work like the Cypher detach delete? In other words if I delete an Entity using myEntityRepository.delete(myEntity); will that delete all relationships with myEntity? or do I need to write a @Query MATCH(...) ...

Problem while fetching @NodeEntity

package com.clusstre.connectionservice.domain; import lombok.*; import org.neo4j.ogm.annotation.GeneratedValue; import org.neo4j.ogm.annotation.GraphId; import org.neo4j.ogm.annotation.Id; import org.neo4j.ogm.annotation.Version; import org.neo4j.o...

Grandstack (Stenciljs- web component complier)

Looking for information to integrate StencilJS into the Grandstack. Stenciljs is a compiler for Vanilla Javascript web components for dependent on a platform . Any ideas..I think web components free you up from using a platform

Resolved! Using multiple datasources with Apollo and Neo4j

Hello community, I'm currently trying to extend my setup to be able to use Apollo GraphQL server (lambda version) with an additional datastore (DynamoDB in this particular case). I stumbled upon the following mentions for writing custom resolvers for...

2X_0_0cb8894debd44659328371e72ff1a75032d0c676.jpeg
malik by Node Clone
  • 2265 Views
  • 2 replies
  • 1 kudos

Resolved! Spring Data Dynamic Bolt connection

Currently our Spring Boot Neo4J app connects via the values found in application.properties: spring.data.neo4j.uri=bolt://neo4j:7687 spring.data.neo4j.username=neo4j spring.data.neo4j.password=secret However, we would like this app to be able to con...

Stream neo4j query result in same transaction

I'm trying without success to stream all nodes from a neo4j graphdb while calculating their path using nodejs and neo4j js driver. I'm using two queries, the first one fetch all nodes nodes and using the observer onNext then I try to execute the quer...

mehdikwa by Node Link
  • 1274 Views
  • 2 replies
  • 0 kudos

How to make this not dangerous?

from neo4j import GraphDatabase driver = GraphDatabase.driver("bolt://localhost:7687", auth=("neo4j", "pass")) def add_friend(tx, name, friend_name): tx.run("MERGE (a:Person {name: $name}) " "MERGE (a)-[:KNOWS]->(friend:Person {name:...

wis by Node
  • 1055 Views
  • 3 replies
  • 0 kudos

Return brower 'table' info with dotnet Neo4j.Driver

in the browser I can run some cypher say- MATCH (start:Node{node:'IP-0000110637'}), (end:Node{node:'FD9-END'}) CALL algo.shortestPath.stream(start, end, "steps") YIELD nodeId, cost MATCH (o:Node) WHERE id(o) = nodeId RETURN o.node AS node, cost And g...

bscola by Node
  • 705 Views
  • 1 replies
  • 0 kudos

Ipv6 issue for py2neo on Kubernetes

We have a Python project connecting to Neo4j, running inside Kubernetes. Previously we used the neo4j package. Then we used the py2neo package (which uses the neobolt driver) with a neo4j sidecar (resulting in a localhost address). But now we connect...

Bolt logging and metrics - troubleshooting

I am trying to troubleshoot Bolt connections. Is there anything I need to know about logging configuration other than the usual logback config ? Also, are there any metrics available in the release I am using, like number of connections/idle/used ? T...