Skip to content

mosaicStores

List all stores on mosaic cluster.

Arguments

Argument Type Description
input (required) GetMosaicStoreInput! Input for V2GetMosaicStore.

Returns

ListStoreResponse!

Sample

query MosaicStores($input: GetMosaicStoreInput!) {
  mosaicStores(input: $input) {
    message
    returnCode
    status
  }
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "mosaicStores": {
      "message": "example-string",
      "returnCode": 0,
      "status": true,
      "data": [
        {
          "id": "example-string",
          "storeName": "example-string",
          "storeType": "MOSAIC_STORE_OBJECT_STORE_TYPE_AZURE_STORE",
          "storeUrl": "example-string",
          "surlNfs": "example-string"
        }
      ]
    }
  }
}