Solr can't use two joins in one query -
i have problem using 2 joins in 1 query. while query returns nothing:
q={!join+from=a+to=b}text_stem_ascii:(text)^5 or {!join+from=a+to=b}text:(text)^10
the following query (please note missing joins) returns something:
q=text_stem_ascii:(text)^5 or text:(text)^10
the fields text
, text_stem_ascii
contain data it's not issue of missing data.
ok, me bad. when using joins join needs specified once! e.g.
q={!join+from=a+to=b}text_stem_ascii:(text)^5 or text:(text)^10
sorry wasting time!
Comments
Post a Comment