does prisma currently support removing item(s) fro...
# prisma-client
a
does prisma currently support removing item(s) from scalar lists? i only see adding item(s) to scalar lists right now in the docs
r
Not yet. Only push is supported. To remove you need to fetch, remove the required value, and add again.
👍 1