Enable or Disable Mini
caution
This documentation is outdated and only applies to partners with existing Minis. Please check back soon for new platform announcements.
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
.