Qasim Javed

Results 3 comments of Qasim Javed
trafficstars

@BeardedSteve can we insert default values now?

Thanks for quick response! ```py class TestCollection(Document): bool_field = BooleanField(default=False) test_str = StringField(null=True) ``` Input operation is: ```py TestCollection.objects(test_str='1').upsert_one(test_str='1') ``` Expected output: ```js { "_id" : ObjectId("5967635223a1fc4817ae05a6"), "bool_field" : false,...

ok. great ! @wojcikstefan Is this issue fixed now about 'default values insertion' ???