We want to trigger the create-linked-issue dialog from our JIRA plugin:

We know how to trigger the quick-edit-issue and the quick-create-issue dialogs. To use these dialogs, we included the following dependencies in our atlassian-plugin.xml:
<dependency>com.atlassian.jira.jira-quick-edit-plugin:quick-edit-issue</dependency>
<dependency>com.atlassian.jira.jira-quick-edit-plugin:quick-create-issue</dependency>
In Javascript, we use the following code to trigger the create-issue-dialog:
var createCreateIssueForm = require('quick-edit/form/factory/create-issue');
createCreateIssueForm({
}).asDialog({
windowTitle : createKnowledgeElementText
}).show();
closeDialog(); How can we use the create-linked-issue dialog?
