We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
isEmpty, set and clear use a simple regular expression, new RegExp('^-?' + this.field + ':'), which doesn't support more complicated fq values like: {!term f=myfield}myvalue or fq=myfield:(myvalue1 myvalue2 "my value 3") or others. See http://wiki.apache.org/solr/SolrQuerySyntax#Other_built-in_useful_query_parsers
isEmpty
set
clear
new RegExp('^-?' + this.field + ':')
fq
{!term f=myfield}myvalue
fq=myfield:(myvalue1 myvalue2 "my value 3")
Google Group discussion
The text was updated successfully, but these errors were encountered:
No branches or pull requests
isEmpty
,set
andclear
use a simple regular expression,new RegExp('^-?' + this.field + ':')
, which doesn't support more complicatedfq
values like:{!term f=myfield}myvalue
orfq=myfield:(myvalue1 myvalue2 "my value 3")
or others. See http://wiki.apache.org/solr/SolrQuerySyntax#Other_built-in_useful_query_parsersGoogle Group discussion
The text was updated successfully, but these errors were encountered: