Hey folks, quick question. Let's say I have a mode...
# orm-help
j
Hey folks, quick question. Let's say I have a model like so
Copy code
model ExampleModel {
  id         String @id @default(cuid())
  someValue  Int
  otherValue Int
}
how can I query for entities where
Copy code
someValue === otherValue
?
I think I found the answer to my question and unfortunately it's not possible for now.