Invoke intent from custom action for FAQ intent

Hi all, I know it is possible to invoke an intent from custom action which works nicely for regular intents but is there also a way to do so for retrieval intents like faq/name?

This works for a regular intent:

    data = {
          "intent": {
              "name": "pseudo_user_intent",
              "confidence": 1.0,
            }
         }

    return [
        ActionExecuted("action_listen"),
        UserUttered(text="/pseudo_user_intent", parse_data=data),
      ]

Unfortunately this does not work:

    data = {
          "intent": {
              "name": "faq",
              "confidence": 1.0,
            }
         }

    return [
        ActionExecuted("action_listen"),
        UserUttered(text="what is your name", parse_data=data),
      ]

“what is your name” would be a NLU training example. Any ideas how to make this work?