Skip to content

cub link delete

Delete a link or multiple links

Synopsis

Delete a link or multiple links using bulk operations.

Single link delete:

  cub link delete my-link

Bulk delete with --where:

Delete multiple links at once based on search criteria.

Examples:

  # Delete all links to a specific unit
  cub link delete --where "ToUnitID = 'unit-uuid'"

  # Delete cross-space links
  cub link delete --where "ToSpaceID != SpaceID"

  # Delete links across all spaces (requires --space "*")
  cub link delete --space "*" --where "Labels.cleanup = 'true'"

  # Delete specific links by slug
  cub link delete --link my-link,another-link
cub link delete [<slug or id>] [flags]

Options

      --filter string    Filter entity to apply to the list. Specify as 'space/filter' for cross-space filters or just 'filter' for current space. Supports both slugs and UUIDs. The filter will be combined with any --where clause using AND logic. Examples: "production-filters/security-check", "my-filter-uuid", "validation-rules"
  -h, --help             help for delete
      --link strings     target specific links by slug or UUID for bulk delete (can be repeated or comma-separated)
  -o, --output string    Output format. One of: json, yaml, name, wide, mutations, jq=<expr>, yq=<expr>, custom-columns=<spec>
      --quiet            No default output.
      --timeout string   completion timeout as a duration with units, such as 10s or 2m (default "10m0s")
      --verbose          Detailed output, additive with default output
      --wait             wait for completion (default true)
      --where string     Filter expression using SQL-inspired syntax. Supports conjunctions with AND. String operators: =, !=, <, >, <=, >=, LIKE, NOT LIKE, ILIKE, ~~, !~~, ~, ~*, !~, !~*. Pattern matching with LIKE/ILIKE uses % and _ wildcards. Regex operators (~, ~*, !~, !~*) support POSIX regular expressions. Examples: "Slug LIKE 'app-%'", "DisplayName ILIKE '%backend%'", "Slug ~ '^[a-z]+-[0-9]+$'"

Options inherited from parent commands

      --context string   The context to use for this command
      --debug            Debug output
      --space string     space ID to perform command on

SEE ALSO