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...
William,
I just realized I never followed up on this.
I am using the database plugin.
the details from the log:
MATCH (asset:Asset)
RETURN graphql.labels(asset) AS _labels,
asset.assetId AS assetId,
asset.name AS name,
[ (asset)-[:companies]->(asset_...