I am trying to create a aggregate results in elastic search but filter option is not working for me. I can aggregate data without filter e.g. but I am facing problems to write equivalent DSL query of : Answer Should be something like this: Use a filter if you know the exact value and do not need a match, else
Tag: lucene
Using inner Join in Solr query
In SQL, I have the query like this SELECT * FROM table1 INNER JOIN table2 ON table1.table1To2Id = table2.table2Id INNER JOIN table3 ON table1.table1To3Id = table3.table3Id How can I …