Is there a way to send a request to Dialogflow ES without executing the fulfillment/webhook if it is activated?I just want to know which intent (intent.displayName) would have been hit.
Thanks for your help
const request = {'session': this.#session(),'queryInput': {'text': {'text': message,'languageCode': 'en-US' } },};const detectIntent= await this.sessionClient.detectIntent(request);
The method "detectIntent" returns the result AFTER the fulfillment/webhook has been executed.This is not what I am looking for.