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

Mutation with auto-computed fields

Hello, I haven't been able to find a solution that allows me to add auto-computed fields value (mostly metadata fields) to some module's auto-generated mutations. Let imagine we have the following schema type Technique { uid: ID! @unique creat...

Spring Data Neo4j SDN 6 @CreatedDate not working

(or maybe I don't know how to make it work) I have @EnableNeo4jAuditing on the @Configuration class and @LastModifiedDate works just fine! But how do I get the created date set? It stays null, no matter which data type I use. What am I missing? (Spri...

chris3 by Graph Buddy
  • 1411 Views
  • 5 replies
  • 0 kudos

Create and drop database from python app

Hello everyone I want to create/drop a database from my python app. How can I do it? I tried the following but it fails to do. with driver.session(database='system') as session_1: t_1 = session_1.begin_transaction() result = t_1.run('''CREATE...

Amal by Node
  • 376 Views
  • 0 replies
  • 0 kudos

Nested filtering returns empty arrays

Hello friends, For some reason, I'm unable to use advanced nested filtering in my schema. What am I doing wrong? Schema type User { managedPodcasts: [UserPodcastEditorOf] ... } type Podcast { editors: [UserPodcastEditorOf] ... } type UserPo...

malik by Node Clone
  • 1364 Views
  • 2 replies
  • 0 kudos

Tutorial for sending cypher queries from C#?

I'm familiar with the ADO NET data provider for PostgreSQL (Npgsql). Using that driver, my C# code just sends SQL query strings and receives rows of results. I was surprised to find that there seems to be a lot of C# code necessary to issue a query ...

davideps by Node Link
  • 1428 Views
  • 3 replies
  • 0 kudos

Loosing the ability to sort/filter on custom queries

I'm trying to enhance my existing GRANDstack application by implicitly filtering some types. You may also think of this as access-control. I have a type called HousingUnit. Previously, the Query for HousingUnit was automatically created through schem...

Resolved! Libraries on Python

I found neo4j and neo4j-driver on pip. They have the same instruction that install by issuing command: "pip install neo4j" But I can install both of them by using: pip install neo4jpip install neo4j-driver Which version should be used for Python?