saleor-apps-redis_apl/apps/taxes/graphql/mutations/InstallApp.graphql

14 lines
250 B
GraphQL
Raw Normal View History

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