Simple text query passed to the text index
(self, query)
| 119 | return self._retriever.get_whole_collection() |
| 120 | |
| 121 | def basic_query(self, query): |
| 122 | """Simple text query passed to the text index""" |
| 123 | return self._retriever.basic_query(query) |
| 124 | |
| 125 | def filter_by_key(self, key, value): |
| 126 | """Filter_by_key accepts a key string, corresponding to a column in the DB, and matches to a value""" |
nothing calls this directly
no test coverage detected