We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c79a7e commit e47b8cbCopy full SHA for e47b8cb
search_query/wos/translator.py
@@ -3,7 +3,7 @@
3
from __future__ import annotations
4
5
import re
6
-
+from search_query.constants import PLATFORM
7
from search_query.constants import Fields
8
from search_query.query import Query
9
from search_query.query import SearchField
@@ -135,6 +135,7 @@ def to_specific_syntax(cls, query: Query) -> Query:
135
"""Convert the query to a specific syntax."""
136
137
query = query.copy()
138
+ query.set_platform_unchecked(PLATFORM.WOS.value, silent=True)
139
140
cls._translate_fields(query)
141
cls.move_fields_to_operator(query)
0 commit comments