Find out more information about a particular intent by passing its name, and optionally its context. To resolve this info, the function handleInfoForIntent is meant to be overridden in the Interop Broker.
Example
const intentInfo = await fdc3.findIntent('ViewChart');
// This returns an AppIntent:
// {
// intent: { name: "StartChat", displayName: "Chat" },
// apps: [{ name: "Skype" }, { name: "Symphony" }, { name: "Slack" }]
// }