Skip to content

hideRevealNasShares

Hide or reveal NAS shares Supported in v7.0+ Hide individually selected NAS shares by setting the "action" field to "Hide". Reveal selected NAS shares by setting the "action" field to "Reveal".

Arguments

Argument Type Description
input (required) HideRevealNasSharesInput! Input for V1HideRevealNasShares.

Returns

ResponseSuccess!

Sample

mutation HideRevealNasShares($input: HideRevealNasSharesInput!) {
  hideRevealNasShares(input: $input) {
    success
  }
}
{
  "input": {
    "hideNasSharesRequest": {
      "action": "HIDE_REVEAL_ACTION_HIDE",
      "ids": [
        "example-string"
      ]
    }
  }
}
{
  "data": {
    "hideRevealNasShares": {
      "success": true
    }
  }
}