Hi,

I'm using Solr 6.5.1.

Is it possible to have multiple hashJoin or innerJoin in the query?

An example will be something like this for innerJoin:

innerJoin(innerJoin(
  search(people, q=*:*, fl="personId,name", sort="personId asc"),
  search(pets, q=type:cat, fl="personId,petName", sort="personId asc"),
  on="personId"
),
  search(collection1, q=*:*, fl="personId,personName", sort="personId asc"),
)

Regards,
Edwin

Reply via email to