Hello all
I am trying to implement a filter using graphQL/GRANDstack with the following types in my schema:
`type OSVersion {
Value: String
}
type HostName {
Value: String
OSVersions: [OSVersion] @relation(name: "OSVersion", direction: "OUT")
}`
To g...