14 lines
250 B
GraphQL
14 lines
250 B
GraphQL
![]() |
mutation InstallApp ($manifestUrl: String) {
|
||
|
appInstall(
|
||
|
input: { manifestUrl: $manifestUrl, appName: "E2E TEST APP", activateAfterInstallation: true }
|
||
|
) {
|
||
|
errors {
|
||
|
code
|
||
|
}
|
||
|
appInstallation {
|
||
|
id
|
||
|
status
|
||
|
}
|
||
|
}
|
||
|
}
|