Hello all, does anyone happen to know how to add b...
# orm-help
o
Hello all, does anyone happen to know how to add boolean filters to prisma studio? I've tried just about every truthy-value I can think of and I just cannot get them to work - the value box always shows as red.
👀 1
n
Hey 👋 Are you getting issues with the latest version of Prisma? Can you please share the image of what you have tried with boolean filters which doesn't work as expected?
o
Minimal schema:
Copy code
Model Application {
  id Int @id
  projects Project[]
}

Model Project {
  id Int @id
  isProduction Boolean @default(false)
  applicationId Int
  application Application @relation(fields: [applicationId], references: [id], onDelete: Cascade)
}