And the console log output is simply `RESULT: unde...
# prisma-client
s
And the console log output is simply
RESULT: undefined
from:
Copy code
return prisma.$exists
        .user({ username: args.username })
        .then(exists => {
          console.log('RESULT:', exists)
          return !exists
        })
        .catch(err => {
          console.log('ERROR:', err)
          throw err
        })