I am trying to make a rest query against a database that stores knowledge articles for users and returns an array of results based on what the user has searched for. Wheneve
The answer for me was to double check I didn't miss any await usage that might be necessary. Turns out I called this.dialog.run(context, this.dialogState); without the await and that threw the same error. I found the answer on this Github issue