Add a comment to the query. See https://www.mongodb.com/docs/manual/reference/method/cursor.comment/ for details.
(self, text)
| 1195 | return queryset |
| 1196 | |
| 1197 | def comment(self, text): |
| 1198 | """Add a comment to the query. |
| 1199 | |
| 1200 | See https://www.mongodb.com/docs/manual/reference/method/cursor.comment/ |
| 1201 | for details. |
| 1202 | """ |
| 1203 | return self._chainable_method("comment", text) |
| 1204 | |
| 1205 | def explain(self): |
| 1206 | """Return an explain plan record for the |