You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Interesting, are you getting an error, or is it just not producing the result you expected. An ID is kind of an odd thing to do a full-text search on (I could see doing a prefix/infix/postfix search but not really full text search)
id: str = Field(index=True, full_text_search=True, primary_key=True)
This fields creates schema as:
ON JSON PREFIX 1 :index: SCHEMA $.id AS id TAG SEPARATOR | $.id AS id_fts TEXT
Query:
Model.id % id
This doesn't work
The text was updated successfully, but these errors were encountered: