Skip to content

deleteMosaicStore

Remove the store by store_name Supported in m3.2.0-m4.2.0 Remove a store from Mosaic cluster.

Arguments

Argument Type Description
input (required) DeleteMosaicStoreInput! Input for V2DeleteMosaicStore.

Returns

MosaicAsyncResponse!

Sample

mutation DeleteMosaicStore($input: DeleteMosaicStoreInput!) {
  deleteMosaicStore(input: $input) {
    data
    message
    returnCode
    status
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "storeName": "example-string"
  }
}
{
  "data": {
    "deleteMosaicStore": {
      "data": "example-string",
      "message": "example-string",
      "returnCode": 0,
      "status": true
    }
  }
}