Hello guys ! Has anyone had a problem with deeply ...
# orm-help
n
Hello guys ! Has anyone had a problem with deeply nested selector on queries ? Given the entities A, B and C, with A -> B and B -> C, I am trying to query :
Copy code
{ 
  A {
     B {
         C ( where : { field_not: null } ) {
             id
        }
    }
}
Is giving me an error :
Copy code
Unknown argument 'where' on field 'C'