I have an array of strings (Prisma 1) and I want t...
# orm-help
k
I have an array of strings (Prisma 1) and I want to push a string in it, but the only available method is
set
. Is there a way to push a string in the array without querying the strings that are already there?
r
Hey @kitze 👋 Unfortunately you would need to query the strings first and then push into that. Directly updating is not possible.