saleor-apps-redis_apl/apps/taxes/graphql/mutations/InstallApp.graphql
2023-04-17 22:31:18 +02:00

13 lines
250 B
GraphQL

mutation InstallApp ($manifestUrl: String) {
appInstall(
input: { manifestUrl: $manifestUrl, appName: "E2E TEST APP", activateAfterInstallation: true }
) {
errors {
code
}
appInstallation {
id
status
}
}
}