is it possible to do `upsert` in a one-to-one rela...
# orm-help
f
is it possible to do
upsert
in a one-to-one relationship? Something like User->Languages, where Languages could be
null
because it’s not required. I’d like to update Languages from the User or create it in case it doesn’t exist yet. All the examples I’ve seen are for one-to-many and include a
where
object (which is not necessary in this case) 🤔
n
Have you tried it?