typesense / typesense-js

JavaScript / TypeScript client for Typesense
https://typesense.org/docs/api
Apache License 2.0
393 stars 74 forks source link

[React Native] filter_by := not woking on iOS 17.4 #206

Closed Namnp1521 closed 3 months ago

Namnp1521 commented 3 months ago

Description

I cannot get no result when use filter := on iOS 17.4. But if i use filter_by:[abc, def], it's work. So i dont know := not wok i still get the result with lower iOS version :((

image

my package: "react": "18.1.0", "react-native": "0.70.0", "typesense": "^1.5.2"

jasonbosco commented 3 months ago

I suspect this is similar to URL encoding, very similar to #193.

Could you follow the same solution mentioned here: https://github.com/typesense/typesense-js/issues/193#issuecomment-1930763613

Namnp1521 commented 3 months ago

it works, thank you so much

I suspect this is similar to URL encoding, very similar to #193.

Could you follow the same solution mentioned here: #193 (comment)

it works, thank you so much!

jasonbosco commented 2 months ago

Here's another work-around that allows you use to use the single search endpoint: https://github.com/typesense/typesense-js/issues/193#issuecomment-2132638054