M
08/12/2023, 11:06 AMDima
08/12/2023, 4:04 PM/
, /path
, /path/to
) in a field and then use it in array filter_by: https://typesense.org/docs/0.24.1/api/search.html#filter-parametersDima
08/12/2023, 4:05 PMDima
08/12/2023, 4:06 PM/
, however it shows the proof of conceptKishore Nallan
08/13/2023, 8:11 AMsymbols_to_index
configuration during collection creation.
curl -k "<http://localhost:8108/collections>" -X POST -H "Content-Type: application/json" \
-H "X-TYPESENSE-API-KEY: ${TYPESENSE_API_KEY}" -d '{
"name": "docs",
"fields": [
{"name": "title", "type": "string" },
{"name": "points", "type": "int32" }
], "symbols_to_index": ["/"]
}'
M
08/19/2023, 10:06 AM