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.

joshua_madan
Node
since ‎09-19-2019
‎06-01-2022

User Statistics

  • 5 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Desktop version: 1.2.3 Neoj version: 3.5.14 OS: macOS Catalina Java version: openjdk version "1.8.0_232" I am trying to run check-consistency on a database. I have tried this on both Ubuntu and MacOS with identical behavior. Running a Full Consiste...
I have two labels with a relationship that has one property: type Match @relation(name: "MATCH") { from: Company to: MasterOrg type: String } type MasterOrg { id: String name: String company: [Match] } type Company { permId: Float name: String master...
I have Companies and Assets nodes with a relationship, HAS_ASSET that has a property 'workingInterest': (c:Company)-[:HAS_ASSET]->(a:Asset) if I define my schema like so: Asset { assetId: Int name: String companies: [Company] @relation(name:"HA...