I am new to ElasticSearch and I am struggling with this issue. Basically what I want to do looks like this (SQL example):
SELECT A.id FROM TableA A, TableB B WHERE A.id = B.id;
I need a query that returns all the information from table A, but only if the identifier from table A is equal to the id from TableB. I read a lot of query filter fields, and I think I could use the Term Field , but I'm not sure how to do this.
Thanks in advance!
source share