Chandar Venkata Rama
09/02/2024, 11:38 AMFanis Tharropoulos
09/02/2024, 12:38 PMfilter_by
clauses. It expects a clause inside it and then cannot parse the result. Try to use braces for this use case e.g testexample{1}
Fanis Tharropoulos
09/02/2024, 12:42 PMcurl --location --globoff --request GET 'localhost:8108/collections/store/documents/search?q=s&query_by=name&filter_by=name%3A[store{2}]' \
--header 'Content-Type: application/json' \
}'
This returns it as expectedHarpreet Sangar
09/02/2024, 1:40 PMFanis Tharropoulos
09/02/2024, 1:42 PMIf your filter value has special characters, you should enclose your value inside backticks like ``testexample(1)``Would there be a way to escape special characters with the backslash character as well? e.g.
textexample\(1\)
Harpreet Sangar
09/02/2024, 1:44 PM```Escaping Commas:
You can also filter using multiple values and use the backtick character to denote a string literal: category:= [, Sneaker].```Running Shoes, Men
Harpreet Sangar
09/02/2024, 1:45 PMEscaping Special Characters
instead of just Escaping Commas
Jason Bosco
09/02/2024, 4:39 PMFanis Tharropoulos
09/03/2024, 8:39 AMChandar Venkata Rama
09/04/2024, 5:19 PMJason Bosco
09/05/2024, 2:46 AMJason Bosco
09/05/2024, 2:46 AM