Hello guys, I hope you all are doing well. I am t...
# community-help
d
Hello guys, I hope you all are doing well. I am trying Typesense v29.0, and I created a collection schema with a field:
Copy code
{
  "name": "tags",
  "type": "string[]",
  "index": true,
  "stem": true,
  "infix": true
}
Then I inserted a document with the following tags:
Copy code
"tags": [..., "yellowstone", ...]
Now I am trying to search like this:
Copy code
GET /documents/search?q=stone&query_by=tags&infix=always
However, this document is not showing up. Any ideas that can help? And thank you in advance!
f
If you export the documents, is that document present? Relevant docs on document exporting: https://typesense.org/docs/29.0/api/documents.html#export-documents
d
@Fanis Tharropoulos yes it does. { ..., "tags": ["yellowstone"] }
f
Could you create a small reproducible example like this one? https://gist.github.com/jasonbosco/7c3432713216c378472f13e72246f46b/