Calm Person

Results 2 comments of Calm Person

Hi, there is an error when I try to add a pointer type object like this ``` place = Place() place.addRelation('category', 'Category_Place', category.objectId) place.save() ``` AttributeError 'NoneType' object has no...

@dgrtwo Thanks man, it worked. About the relation datatype, I have another question like above: ``` place = Place() place.name = 'abc' place.save() place.addRelation('category', 'Category_Place', category.objectId) ``` after add relation,...