Skip to content

addMosaicStore

Add a New Store Supported in m3.2.0-m4.2.0 Add a new store to Mosaic cluster.

Arguments

Argument Type Description
input (required) AddMosaicStoreInput! Input for V2AddMosaicStore.

Returns

MosaicAsyncResponse!

Sample

mutation AddMosaicStore($input: AddMosaicStoreInput!) {
  addMosaicStore(input: $input) {
    data
    message
    returnCode
    status
  }
}
{
  "input": {
    "addStoreData": {
      "storeName": "example-string",
      "storeType": "MOSAIC_ADD_STORE_REQUEST_STORE_TYPE_AZURE_STORE",
      "storeUrl": "example-string"
    },
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "addMosaicStore": {
      "data": "example-string",
      "message": "example-string",
      "returnCode": 0,
      "status": true
    }
  }
}