Skip to content

allNosqlStorageLocations

List of Mosaic Storage Locations used for NoSQL backups

Arguments

Argument Type Description
sortBy MosaicStorageLocationQuerySortByField Specification on how to sort a list of Mosaic Storage Locations.
sortOrder SortOrder Sorts the order of results.
filter [MosaicStorageLocationFilterInput!] Specification on how to filter a list of Mosaic Storage Locations.

Returns

[MosaicStorageLocation!]!

Sample

query {
  allNosqlStorageLocations {
    backupCount
    clusterUuid
    fid
    geographicLocation
    id
    spaceConsumedBytes
    storageLocationName
    storeConnectionStatus
    storeType
  }
}
{}
{
  "data": {
    "allNosqlStorageLocations": [
      {
        "backupCount": 0,
        "clusterUuid": "example-string",
        "fid": "example-string",
        "geographicLocation": "example-string",
        "id": "example-string",
        "spaceConsumedBytes": 0,
        "connectionParameters": {
          "nfsServer": "example-string",
          "nfsServerMountPath": "example-string",
          "storeUrl": "example-string"
        }
      }
    ]
  }
}