I am new to Solr and I have got stuck while doing a join between various documents (which came in the solr package). The following url :-
http://localhost:8983/solr/collection1/select?q={!join+from=id+to=manu_id_s+cache=false}id:*
is generating a different response as compared to the following url :-
http://localhost:8983/solr/collection1/select?fq={!join+from=id+to=manu_id_s+cache=false}id:*
I looked up the documentation of join on the wiki. But, they are using join with the main query only. Can you please let me know if it is possible to do a join with a filter query or if there is some other parameter which I need to give so that the join with a filter query can work ?