Apply query on attribute, to be used along with chain() :param str attribute: attribute name :rtype: Query
(self, attribute)
| 905 | |
| 906 | @fluent |
| 907 | def on_attribute(self, attribute): |
| 908 | """ Apply query on attribute, to be used along with chain() |
| 909 | |
| 910 | :param str attribute: attribute name |
| 911 | :rtype: Query |
| 912 | """ |
| 913 | self._attribute = self._get_mapping(attribute) |
| 914 | return self |
| 915 | |
| 916 | @fluent |
| 917 | def on_list_field(self, field): |
no test coverage detected