You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resource.TypedStore (and resource.Store) does not support Patch operations, in this case by design to imitate a KV store interface where the only option for updating is to replace an object (and Patch can have a few gotchas involved). However, users find it useful to be able to do patch operations from a typed interface like resource.TypedStore. We should evaluate either adding Patch support to the stores, or introducing something like resource.TypedClient which wraps resource.Client like so:
resource.TypedStore
(andresource.Store
) does not support Patch operations, in this case by design to imitate a KV store interface where the only option for updating is to replace an object (and Patch can have a few gotchas involved). However, users find it useful to be able to do patch operations from a typed interface likeresource.TypedStore
. We should evaluate either adding Patch support to the stores, or introducing something likeresource.TypedClient
which wrapsresource.Client
like so:The text was updated successfully, but these errors were encountered: