Is it possible to setup a fuzzy search that can search multiple tables? I've currently got an API endpoint setup that performs a 'Query All Records' on my /producdb table and joins in another table with product specs.
The fuzzy search implimented currently works, but only on the productdb table. If a user tries to search for specs of a product they don't get results because that data is on the joined table.
How can I allow the user to search both tables at once?