Partially update a message
A partial update can be used to set and unset specific fields when it is necessary to retain additional data fields on the object. AKA a patch style update.
stream-cli chat update-message-partial --message-id [message-id] --user [user-id] --set [raw-json] --unset [property-names] [flags]
# Partially updates a message with id 'msgid-1'. Updates a custom field and removes the silent flag.
$ stream-cli chat update-message-partial -message-id msgid-1 --set '{"importance": "low"}' --unset silent
-h, --help help for update-message-partial
-m, --message-id string [required] Message id
-s, --set string [optional] Raw JSON of key-value pairs to set
--unset string [optional] Comma separated list of properties to unset
-u, --user string [required] User id
--app string [optional] Application name to use as it's defined in the configuration file
--config string [optional] Explicit config file path