Jonathan Zylberberg
04/16/2025, 1:46 PMbrand_id
on it. In one query can i fuzzy match on the name
column of one collection, the street_address
of the address collection and then join the results? If not, to achieve this would I need to put them into a single collection or do a multis search? My fear for multi search is the throughput, as I eventually want to search by more things and am afraid of multi searching across many collections. Thank youFanis Tharropoulos
04/16/2025, 2:23 PMJonathan Zylberberg
04/16/2025, 2:31 PMFanis Tharropoulos
04/16/2025, 2:32 PMJonathan Zylberberg
04/16/2025, 2:38 PMq=Targ, New York
I want to search for all brands that match that criteria, but I want fuzzy matching in case of spelling mistakes, etc. Is it possible to do that if the data is on two different collections being joined together?Jonathan Zylberberg
04/16/2025, 2:39 PMNames
schema {name: str, some_id_ref: str}
collection 2 Addresses
schema {state: str, some_id_ref: str}
Can I do something like
q=Targ, New York
query_by=Names.name,Addresses.state
+ the joining logic obvFanis Tharropoulos
04/16/2025, 2:40 PMq
parameter will be used verbatim across all query_by
fields. Using a comma won't spread it for the other query_by
fields. The only thing that isn't possible by joins currently is querying by a joined field (say collection has a brand_name
and a reference to collection b, you can't query by $brand_name
on collection b)Fanis Tharropoulos
04/16/2025, 2:41 PMJonathan Zylberberg
04/16/2025, 2:41 PMFanis Tharropoulos
04/16/2025, 2:41 PM