For this query: ``` merchant { foo{ bar { ...
# prisma-whats-new
e
For this query:
Copy code
merchant {
  foo{
    bar {
      baz{
        baa
      }
    }
  }
}
and
bar
does not exists, should the response be an object containing
baz
and
baa
keys (and
baa
is
null
) or should
bar
be equal to
null
? What is recommended graphql behavior?