I run a query and I get the following output: ``` ...
# prisma-client
s
I run a query and I get the following output:
Copy code
~/Git/onezone-test-server ī‚° ī‚  master ā— ī‚° yarn start
yarn run v1.12.3
$ ts-node src/index.ts
šŸš€ Apollo server running and ready at <http://localhost:3000/>

Query:
query ($where: UserWhereInput) {
  users(where: $where) {
    id
    email
    firstName
    lastName
    location
    metadata
    role
    username
  }
}

Variables:
{"where":{"username":"test"}}