Return the first matching record.
(self)
| 1131 | return rv |
| 1132 | |
| 1133 | def first(self): |
| 1134 | """Return the first matching record.""" |
| 1135 | return next(iter(self), None) |
| 1136 | |
| 1137 | def all(self): |
| 1138 | """Loads all matching records as list.""" |
no outgoing calls