cub view update
cub view update
Update a view or multiple views
Synopsis
Update a view or multiple views using bulk operations.
Single view update:
cub view update my-view --column Unit.Slug --column Unit.Status --order-by Unit.CreatedAt --order-by-direction DESC
Bulk update with --patch:
Update multiple views at once based on search criteria. Requires --patch flag with no positional arguments.
Examples:
# Update columns for all views matching a pattern
cub view update --patch --where "FilterID IS NOT NULL" --column Unit.Slug --column Unit.DisplayName
# Update ordering for specific views
cub view update --patch --view view1,view2 --order-by Unit.UpdatedAt --order-by-direction ASC
# Update views using JSON patch
echo '{"OrderByDirection": "DESC"}' | cub view update --patch --where "OrderBy IS NOT NULL" --from-stdin
# Clear ordering from views
echo '{"OrderBy": "", "OrderByDirection": ""}' | cub view update --patch --where "OrderBy IS NOT NULL" --from-stdin
cub view update [<slug or id>] [options...] [flags]
Options
--annotation strings annotations in key=value format; can separate by commas and/or use multiple instances of the flag
--column strings column names to display in the view (can be repeated or comma-separated)
--delete-gate strings delete gates in key[=true] format; can separate by commas and/or use multiple instances of the flag
--filename string Read the ConfigHub entity JSON from file, URL (https://), or stdin (-); mutually exclusive with --from-stdin
--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"
--filter-field string filter to identify entities to include in the view (slug or UUID)
--from-stdin Read the ConfigHub entity JSON (e.g., retrieved with cub <entity> get --quiet --json) from stdin; merged with command arguments on create, and merged with command arguments and existing entity on update
--group-by string column name to group by
-h, --help help for update
--jq string jq expression, suppressing default output
--json JSON output, suppressing default output
--label strings labels in key=value format; can separate by commas and/or use multiple instances of the flag
--order-by string column name to sort by
--order-by-direction string sort direction (ASC or DESC, only valid with --order-by)
--patch use patch API for individual or bulk operations
--quiet No default output.
--replace Replace entity instead of merging when using --from-stdin or --filename
--verbose Detailed output, additive with default output
--view strings target specific views by slug or UUID for bulk patch (can be repeated or comma-separated)
--where string Filter expression using SQL-inspired syntax. Supports conjunctions with AND. String operators: =, !=, <, >, <=, >=, 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]+$'"
--yaml YAML output, suppressing default output
--yq string yq expression, suppressing default output
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
- cub view - View commands