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

Updating existing relationships with py2neo

Hello I am very new to Neo4j and py2neo. I am using them to create a graph of data related to jobs, organisations and education. I have succesfully built my graph, however I am now needing to update properties for certain relationships in my graph. ...

Resolved! How to correctly update a relationship

Hello ! I'm having problems to update the relation property. Given the : public class SomeEntity { @Id @GeneratedValue protected Long id; @Property protected String name; @Relationship protected Map<String, List<SomeLin...

Resolved! Conditional Cypher Query on Embedded

Hello, Newly I discover apoc.when and try to use it in my project. My project have test with using neo4jharness. But It seem that apoc from Central Repository: org/neo4j/procedure/apoc/4.4.0.4 (maven.org) doesn't contain function documented here Cond...

paulB by Node Clone
  • 468 Views
  • 1 replies
  • 0 kudos

How to pass Query Parameters in Neo4j Spark Connector

As per official guide graph can be integrated with spark directly to read and write data. I see few options like 'query', 'labels', 'relationship' etc to query a graph. Is there a way to provide query parameters to a custom query? var query = " MATC...

How to project relationship-properties?

I project a graph in python like this: G, res = gds.graph.project( "graph", # Graph name "movie", # Node projection "times" # Relationship projection ) but G.relationship_properties('times') = .Actually it...

Resolved! Relationships eliminated after updating node properties

Hi, In my repository, I made a custom query to retrieve some entities. @Query("MATCH (n {identifier:$identifier}) RETURN n;") List<DynamicEntityNode> findByIdentifier(@Param("identifier") String identifier); As imagined, this query won't retrieve t...

Importing data to neo4j from a GraphQL data source

Hello. I have some data exposed by a GraphQL server which I would like to query in more ad-hoc fashion using cypher. I have a query which exposes pretty much the entire graph of data I am interested in. What is the easiest way to migrate the schema a...

rrva by Node Link
  • 2273 Views
  • 7 replies
  • 4 kudos