(self, **kwargs)
| 979 | return self._only_or_defer('defer', fields) |
| 980 | |
| 981 | def create(self, **kwargs): |
| 982 | return self.model(**kwargs) \ |
| 983 | .batch(self._batch) \ |
| 984 | .ttl(self._ttl) \ |
| 985 | .consistency(self._consistency) \ |
| 986 | .if_not_exists(self._if_not_exists) \ |
| 987 | .timestamp(self._timestamp) \ |
| 988 | .if_exists(self._if_exists) \ |
| 989 | .using(connection=self._connection) \ |
| 990 | .save() |
| 991 | |
| 992 | def delete(self): |
| 993 | """ |
nothing calls this directly
no test coverage detected