Open
Description
I suspect this can be well reproduced by providing the schema I tried:
union Thing = ThingA | ThingB
type User {
id: ID!
commentsOn: [Thing!] @relation(name: "COMMENTED")
}
type ThingA {
id: ID!
}
type ThingB {
id: ID!
}
The schema is accepted wth a call to graphql.idl
but once I call graphql.schema
I get
Neo.ClientError.Procedure.ProcedureCallFailed:
Failed to invoke procedure `graphql.schema`:
Caused by: kotlin.KotlinNullPointerException
I haven't tested whether other operations work but would open a different issue in that case, as this one is only related to graphql.schema()