better way to check truthy / falsey from select
Hey all, currently checking if the length > 0 and <1 to check truthy / falsey is there a better way to do this with drizzle?
if (existingUser.length > 0)
2 Replies
if (existingUser.length > 0)