Enable or Disable Mini
You can use the following mutation to enable or disable your Mini in the Shop app:
mutation ToggleMiniByPartner($enable: Boolean!) {
miniToggle(enable: $enable) {
enabled
}
}
Your Mini is enabled by default. However, for any reason if you would like to disable the Mini you can call the above mutation with enable: false
as an argument. Once you have disabled the Mini it will stop appearing in the Shop app.
To enable your Mini again, you can call the same mutation above with enable: true
.