You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider allowing single-quotes (') strings to prevent needing escaping double quotes in the CLI.
As documented in https://docs.dimensions.ai/dsl/language.html#full-text-searching, Python can use combinations of single quotes, raw strings literals and triple-quotes to circumvent this. The CLI has no such functionality AFAIK.
e.g.: search publications for "\"phrase 1\" AND \"phrase 2\"" becomes search publications for '"phrase 1" AND "phrase 2"'.
The text was updated successfully, but these errors were encountered:
Consider allowing single-quotes (') strings to prevent needing escaping double quotes in the CLI.
As documented in https://docs.dimensions.ai/dsl/language.html#full-text-searching, Python can use combinations of single quotes, raw strings literals and triple-quotes to circumvent this. The CLI has no such functionality AFAIK.
e.g.:
search publications for "\"phrase 1\" AND \"phrase 2\""
becomessearch publications for '"phrase 1" AND "phrase 2"'
.The text was updated successfully, but these errors were encountered: