I have a function which currently calls Models.object.get()
, which returns either 0 or 1 model objects:
- if it returns 0, I create a new model instance in the
except DoesNotExist
clause of the function. - Otherwise, I would like to update the fields in the pre-existing instance, without creating a new one.
I was originally attempting to
call .update()
on the instance which was found, but .update()
seems to be only callable on a QuerySets. How do I get around
changing a dozen fields, without calling .filter()
and comparing
the lengths to know if I have to create or update a pre-existing
instance?