hi guys, I got some problem dto: ```@Field(() =&gt...
# prisma-client
b
hi guys, I got some problem dto:
Copy code
@Field(() => [Int])
lengthIds: number[];
I need to write filter:
Copy code
findMany({
where: {
 length_ids:{
   in: objectDto.filter.lengthIds
}
}
})
t
Hey Bohdan, the
in
needs an array of numbers
Can you describe a bit your use-case?