Hi,
We have an AGOL hosted feature layer and an exb app Search Widget which searches that layer. We observed that the SW stopped returning features added to this layer, if they were added _after 8/21/2025.
I diagnosed. The layer has Full Text field indexes on 2 fields (which seem to have been added by exb). Also, I learned that the feature layer `/query` requests issued by exb use the `fullText` syntax, rather than the `where` syntax.
Likely Cause: full text field index was not being updated as new features were added. Again, this started on 8/21.
Fixes:
1) I first deleted and recreated the fullText index (on the field I was searching). This (logically) picked up on recently added features...
... but unfortunately, features added after I re-created the fullText index were still not returned by `fullText` searches/queries.
2) At this point, I am in the middle of confirming whether or not deleting the fullText indexes (on both fields), will solve our issue. It works for existing data, but waiting on new data in our prod system to confirm.
Questions:
1. Is it a known issue that (some) fullText indexes will not be updated correctly when new features are added? Our feature layer was working fine until 8/21.
2. We were unable to reproduce this issue with a "DEV" version of our feature layer, also in AGOL. It's fullText index appears to be updated correctly. It is newer compared to our "prod" layer which is a couple years old. Are older feature layers known to have issues with fullText field indexes?
3. Deleting fullText indexes trigged cause exb's Search Widget to "fall back" to traditional `&where=blah` , and that is fine for us. By chance, is there a better solution out there?
Thanks,
-Cory