Hello All, I am sending one more email with more details.
Solr is started in SlorCloud mode. I have 2 collections. collection1: { "id":"123", "name":"name", "description":"description" } collection2: { "id":"123", "stock":"inStock", "price":40 } I am writing the joining as below and executing that query on *collection1*. {!join method="crossCollection" fromIndex="*collection2*" from="id" to="id" v="*:*"} I am getting the results but only with the data from *collection1* *Current Result:* { "id":"123", "name":"name", "description":"description" } Question: Is there any way we can get the data from both the collections ? *Expected Results:* { "id":"123", "name":"name", "description":"description", "stock":"inStock", "price":40 } Thanks, Venkat.