(query: str)
| 515 | |
| 516 | |
| 517 | def _fts_query(query: str) -> str: |
| 518 | tokens = re.findall(r"[\w.\-]+", query or "", flags=re.UNICODE) |
| 519 | return " ".join(token for token in tokens if token) |
| 520 | |
| 521 | |
| 522 | def _keyword_search_nodes( |
no outgoing calls
no test coverage detected