When connecting to the prisma graphQL interface di...
# prisma-client
c
When connecting to the prisma graphQL interface directly, can you do where clauses? I was hoping to do something simple like:
Copy code
{
  human(id: "1000") {
    name
    height
  }
}
but when I typed
id
it kept trying to autocomplete it to
where
and nothing I tried would really work.