Is there a way to do a fuzzy search (using ZQ fuzzy search) in a workflow? This is what I want to happen:
- User selects Thing from RG on Screen A
- User selects continue
- Workflow runs:
- sets custom state (‘selection’ = Thing)
- Fuzzy Search (Search&Autocorrect) runs (takes in ‘selection’)
- IF Fuzzy Search Search&Autocorrect) matches = 0, show screen B
- IF Fuzzy Search Search&Autocorrect) matches > 0, show screen C
I have a timing issue where a fuzzy search is on Screen A and takes in a custom state, but there isn’t enough time between ‘selection’ being set, Search&Autocorrect doing its search, so and the screen display evaluating matches… So matches is always = 0
If I debug with pauses this works fine as the time elapses… If I could do the fuzzy search in the workflow sequentially rather than in the UI this would help