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.

vladimir_g_bore
Node Link
since ‎09-24-2020
‎06-04-2022

User Statistics

  • 4 Posts
  • 0 Solutions
  • 3 Kudos given
  • 0 Kudos received

User Activity

Say I have two Neo4j databases in a project and I need to switch back and forth between them. Currently, on the desktop application, I open and close the databases manually and re-run: driver = GraphDatabase.driver(uri, auth=("neo4j", "password")) Is...
Is there a way to constrain the the types of values associated to each node (or edge) attribute? For example enforcing the fact that attribute 1 must be a string and attribute 2 must be an array, etc.: (n: Vertex {foo: String!, bar: Array!})