arady22
Results
2
issues of
arady22
Title when calling the function to update all the fields instead of calling ``` model_field_names = [field.name for field in model._meta.get_fields()] model.objects.bulk_update_or_create(bulk_data, model_field_names, match_field='object_guid') ``` we call `model.objects.bulk_update_or_create(bulk_data, 'all', match_field='object_guid')`
I'm trying to get a list of all attributes that have a value but I'm facing an issue where there are many missing attributes both operational and user/effective. ``` server...